spotify/webapi

抽象 Spotify Web API 的 PHP 库

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

This package is not auto-updated.

Last update: 2024-09-14 15:34:21 UTC


README

Spotify Web API 抽象(也称为元数据 API)- https://developer.spotify.com/technologies/web-api/

安装

此项目使用 Composer 格式,因此您只需使用 Composer 安装所有依赖项。了解如何使用 Composer:https://getcomposer.org.cn/

##示例 使用此类的非常简单。您只需包含自动加载、实例化类并调用其公共方法 get

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