spotify / webapi
PHP library for abstracting the Spotify Web API
dev-master
2014-02-08 14:14 UTC
Requires
- php: >=5.3.3
- zendframework/zend-http: 2.*,!=2.0.6
- zendframework/zend-i18n: 2.*,!=2.0.6
- zendframework/zend-json: 2.*,!=2.0.6
This package is not auto-updated.
Last update: 2025-01-04 16:57:21 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"));