2017 © Pedro Peláez
 

library spotify-token-swap-php

Allows to swap tokens with the Spotify API

image

emphaz/spotify-token-swap-php

Allows to swap tokens with the Spotify API

  • Sunday, April 16, 2017
  • by rgehan
  • Repository
  • 1 Watchers
  • 4 Stars
  • 76 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

Spotify Token Swap PHP

Installation

Simply require it with composer composer require emphaz/spotify-token-swap-php, (*1)

Requirements

Only curl is required for the module to work., (*2)

Usage

<?php

use emphaz\SpotifyTokenSwapper\SpotifyTokenSwapper;

$tokenSwapper = new SpotifyTokenSwapper([
    'client_id' => '5865db6d15f808d916b77bed10993c2e',
    'secret' => '7f5e0e0041afbf6bcda64352f84f121f',
    'callback_url' => 'my-super-callback://callback'
]);

// If we received a token from some SDK, or other service
if(isset($_POST['code']))
{
    $data = $tokenSwapper->swapAuthCode($_POST['code']);
    var_dump($data);

    /*
    Outputs:
    (
        [access_token] => RANDOM_ACCESS_TOKEN
        [token_type] => Bearer
        [expires_in] => 3600
        [refresh_token] => RANDOM_REFRESH_TOKEN
        [scope] => user-follow-read user-read-email user-read-private
    )
     */
}

The Versions

16/04 2017

dev-master

9999999-dev

Allows to swap tokens with the Spotify API

  Sources   Download

MIT

The Development Requires

by Renan GEHAN
by Timothe PEARCE

16/04 2017

1.0.4

1.0.4.0

Allows to swap tokens with the Spotify API

  Sources   Download

MIT

The Development Requires

by Renan GEHAN
by Timothe PEARCE

15/04 2017

1.0.3

1.0.3.0

Allows to swap tokens with the Spotify API

  Sources   Download

MIT

by Renan GEHAN
by Timothe PEARCE

15/04 2017

1.0.2

1.0.2.0

Allows to swap tokens with the Spotify API

  Sources   Download

MIT

by Renan GEHAN
by Timothe PEARCE

15/04 2017

1.0.1

1.0.1.0

Allows to swap tokens with the Spotify API

  Sources   Download

MIT

by Renan GEHAN
by Timothe PEARCE

15/04 2017

1.0.0

1.0.0.0

Allows to swap tokens with the Spotify API

  Sources   Download

MIT

by Renan GEHAN
by Timothe PEARCE