samdjstevens / oauth2-spotify
0.1.2
2018-08-31 11:01 UTC
Requires
- php: >=5.6.0
- league/oauth2-client: ^2.3
This package is not auto-updated.
Last update: 2024-11-10 06:07:13 UTC
README
This package implements a Spotify OAuth 2.0 provider for the league/oauth2-client library.
Requirements
PHP 5.6 or higher is required.
Installation
Install with Composer by running:
composer require samdjstevens/oauth2-spotify
Usage
Create a new instance of the provider with your app details like so:
$provider = new \Samdjstevens\OAuth2\Client\Provider\Spotify([ 'clientId' => 'YOUR_SPOTIFY_CLIENT_ID', 'clientSecret' => 'YOUR_SPOTIFY_CLIENT_SECRET', 'redirectUri' => 'https://example.com/callback-url', ]);
And then use with the league/oauth2-client
library as outlined here.