spotify/webapi

PHP library for abstracting the Spotify Web API

dev-master 2014-02-08 14:14 UTC

This package is not auto-updated.

Last update: 2024-04-27 13:53:41 UTC


README

Abstraction of the spotify web-abi (aka metadata api) - https://developer.spotify.com/technologies/web-api/

Installation

This project is in Composer format, so you just need to use Composer to intall all dependencies. Learn how to use Composer: https://getcomposer.org/

##Example It is very simple to use this class. You just need to include the autoload, instantiate the class and call its public method get.

require 'vendor/autoload.php';
$api = new Webservice\Spotify\WebApi();
$results = $api->get('search', 'artist', 'json', array("q" => "Queen"));