binalogue/laravel-spotify-wrapper

This package is abandoned and no longer maintained. No replacement package was suggested.

A PHP wrapper for Spotify's Web API.

v0.4.1 2019-12-04 16:58 UTC

This package is auto-updated.

Last update: 2022-01-11 08:35:04 UTC


README

Latest Version on Packagist Build Status Quality Score Total Downloads

This is a PHP wrapper for jwilsson/spotify-web-api-php. It includes:

  • Authorization flow helpers.

Installation

You can install this package via Composer:

composer require binalogue/laravel-spotify-wrapper

Add the following lines to config/services.php:

'spotify' => [
    'client_id' => env('SPOTIFY_CLIENT_ID'),
    'client_secret' => env('SPOTIFY_CLIENT_SECRET'),
],

Usage

$spotify = app()->make('SpotifyWrapper', [
    'callback' => '/playlist',
]);

Available options:

  • callback: Optional. The URI to redirect to after the user grants or denies permission. This URI needs to have been entered in the Redirect URI whitelist that you specified when you registered your application.
  • scope: Optional. A space-separated list of scopes. If no scopes are specified, authorization will be granted only to access publicly available information.
  • show_dialog: Optional. Whether or not to force the user to approve the app again if they’ve already done so. If false (default), a user who has already approved the application may be automatically redirected to the URI specified by redirect_uri. If true, the user will not be automatically redirected and will have to approve the app again.

Method Reference

These are the available methods:

requestAccessToken

SpotifyWrapper\SpotifyWrapper::requestAccessToken()

Request an access token.

First of all, the user will be redirected to Spotify to approve the app. Then, the user is redirected back with an authorization code, in which we request an access token.

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.