Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 439 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 439 Bytes

Spotify

A very simple and not fully implemented Spotify API wrapper

UI Interface

Spotify Wrapper Example

Usage

Creating Client

use Monks\Spotify\Spotify;

$spotify = new Spotify($clientId, $secret);

Getting Playlist By Id

$playlist = $spotify->getPlaylist($playlistId);

Getting Playlist Tracks

$tracks = $spotify->getPlaylistTracks($playlistId, $offset, $limit);