Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Spotify Web Api Php Laravel Package

jwilsson/spotify-web-api-php

View on GitHub
Deep Wiki
Context7

Handling Errors

Whenever the API returns a error of some sort, a SpotifyWebAPIException extending from the native PHP Exception will be thrown.

The message property will be set to the error message returned by the Spotify API and the code property will be set to the HTTP status code returned by the Spotify API.

try {
    $track = $api->getTrack('non-existing-track');
} catch (SpotifyWebAPI\SpotifyWebAPIException $e) {
    echo 'Spotify API Error: ' . $e->getCode(); // Will be 404
}

When an authentication error occurs, a SpotifyWebAPIAuthException will be thrown. This will contain the same properties as above.

Handling expired access tokens

As of version 2.11.0 it's possible to automatically refresh expired access tokens. Read more here.

When the access token has expired you'll get an error back. The SpotifyWebAPIException class supplies a helper method to easily check if an expired access token is the issue.

try {
    $track = $api->me();
} catch (SpotifyWebAPI\SpotifyWebAPIException $e) {
    if ($e->hasExpiredToken()) {
        // Refresh the access token
    } else {
        // Some other kind of error
    }
}

Read more about how to refresh access tokens.

Handling rate limit errors

As of version 2.12.0 it's possible to automatically retry rate limited requests by setting the auto_retry option to true.

If your application should hit the Spotify API rate limit, you will get an error back and the number of seconds you need to wait before sending another request.

Here's an example of how to handle this:

try {
    $track = $api->getTrack('7EjyzZcbLxW7PaaLua9Ksb');
} catch (SpotifyWebAPI\SpotifyWebAPIException $e) {
    if ($e->getCode() == 429) { // 429 is Too Many Requests
        $lastResponse = $api->getRequest()->getLastResponse();

        $retryAfter = $lastResponse['headers']['retry-after']; // Number of seconds to wait before sending another request
    } else {
        // Some other kind of error
    }
}

Read more about the exact mechanics of rate limiting in the Spotify API docs.

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
andydefer/laravel-cluster
testo/fiber
mintobit/jobqueue
a4sex/maintenance-bundle
a4sex/entity-date-update
a4sex/client-identifier
a4sex/base-utilites
a4sex/key-value-storage
a4sex/micro-status
chilldev/dependency-injection-extra
datinglibre/datinglibre-app-api
biberltd/corebundle
bricre/symfony-bundle-test
biberltd/logbundle
dominium/http-adapter-bundle
dominium/google-analytics
a4sex/auto-clean-entity
christhompsontldr/laravel-inky
spatie/mailcoach-vapor
spatie/laravel-javascript-views