ngiraud/spotify-sdk-php
Composer 安装命令:
composer require ngiraud/spotify-sdk-php
包简介
SDK for using Spotify in PHP
README 文档
README
This package contains the PHP SDK to work with the Spotify Web API.
Table of Contents
Get Started
Requires PHP 8.1+
First, install the client via the Composer package manager:
composer require ngiraud/spotify-sdk-php
You must also install Guzzle if your project does not already have a it integrated:
composer require guzzlehttp/guzzle
In order to use the SDK, you need to request an access_token. You can get an example from the Spotify Web API docs.
If you use Laravel, you can use Socialite and the adapter provided by the community on their website.
Below is an example on how to authenticate with Laravel Socialite.
Route::get('/spotify/redirect', function () { return Socialite::driver('spotify') ->scopes([ // the list of scopes you want to allow ]) ->redirect(); }); Route::get('/spotify/callback', function () { $user = Socialite::driver('spotify')->user(); return $user->token; });
You can now interact with Spotify's API:
use Spotify\Spotify; $client = Spotify::client('<access-token>'); $album = $client->albums()->find('<spotify-album-id>', ['market' => 'FR']);
You can also use the Client Credentials flow to authenticate:
use Spotify\Spotify; $client = Spotify::basic('<client-id>', '<client-secret>'); $seeds = $client->genres()->seeds();
Please keep in mind that only endpoints that do not access user information can be accessed using this particular authentication flow.
Usage
Handling Pagination
On some resources, some methods such as findMultiple will return an instance of Spotify\Support\PaginatedResults.
This instance returns a list of records, and can handle other things like fetch the next or previous page of results.
Available methods
results()links()previousUrl()nextUrl()previous()next()meta()total()
Albums Resource
You can access the Albums resource via the albums method from the client.
Available methods:
find()findMultiple()tracks()findSaved()save()deleteSaved()checkSaved()newReleases()
Example
// Returns an instance of Spotify\SingleObjects\Album $album = $client->albums()->find('<spotify-album-id>'); echo $album->name; // Returns an instance of Spotify\Support\PaginatedResults $tracks = $client->albums()->tracks('<spotify-album-id>', ['market' => 'FR', 'limit' => 5]); echo $tracks->results();
Artists Resource
You can access the Artists resource via the artists method from the client.
Available methods:
find()findMultiple()albums()topTracks()relatedArtists()
Example
// Returns an instance of Spotify\SingleObjects\Artist $artist = $client->artists()->find('<spotify-artist-id>'); echo $artist->name; // Returns an instance of Spotify\Support\PaginatedResults $albums = $client->artists()->albums('<spotify-artist-id>', ['market' => 'FR', 'limit' => 5]); echo $albums->results();
Audiobooks Resource
Note: Audiobooks are only available for the US, UK, Ireland, New Zealand and Australia markets.
You can access the Audiobooks resource via the audiobooks method from the client.
Available methods:
find()findMultiple()chapters()findSaved()save()deleteSaved()checkSaved()
Example
// Returns an instance of Spotify\SingleObjects\Audiobook $audiobook = $client->audiobooks()->find('<spotify-audiobook-id>'); echo $audiobook->name; // Returns an instance of Spotify\Support\PaginatedResults $chapters = $client->audiobooks()->chapters('<spotify-audiobook-id>', ['limit' => 5]); echo $chapters->results();
Categories Resource
You can access the Categories resource via the categories method from the client.
Available methods:
find()browse()
Example
// Returns an instance of Spotify\SingleObjects\Category $category = $client->categories()->find('<spotify-category-id>'); echo $category->name; // Returns an instance of Spotify\Support\PaginatedResults $categories = $client->categories()->browse(); echo $categories->results();
Chapters Resource
You can access the Chapters resource via the chapters method from the client.
Available methods:
find()findMultiple()
Example
// Returns an instance of Spotify\SingleObjects\Category $chapter = $client->chapters()->find('<spotify-chapter-id>'); echo $chapter->name; // Returns an instance of Spotify\Support\PaginatedResults $chapters = $client->chapters()->browse(); echo $chapters->results();
Episodes Resource
You can access the Episodes resource via the episodes method from the client.
Available methods:
find()findMultiple()findSaved()save()deleteSaved()checkSaved()
Example
// Returns an instance of Spotify\SingleObjects\Episode $episode = $client->episodes()->find('<spotify-episode-id>'); echo $episode->name; // Returns an array with the status for each episode $episodes = $client->episodes()->checkSaved(['<spotify-episode-id>', '<spotify-episode-id>']); echo $episodes;
Genres Resource
You can access the Genres resource via the genres method from the client.
Available methods:
seeds()
Example
// Returns an array of genres $seeds = $client->genres()->seeds(); echo $seeds;
Markets Resource
You can access the Markets resource via the markets method from the client.
Available methods:
all()
Example
// Returns an array of markets $markets = $client->markets()->all(); echo $markets;
Player Resource
You can access the Player resource via the player method from the client.
Available methods:
state()transfer()availableDevices()currentlyPlayingTrack()start()pause()next()previous()seek()repeat()volume()shuffle()recentlyPlayedTracks()queue()addToQueue()
Example
// Returns an instance of Spotify\SingleObjects\Player $player = $client->player()->state(); echo $player->is_playing;
Playlists Resource
You can access the Playlists resource via the playlists method from the client.
Available methods:
find()forCurrentUser()forUser()create()update()tracks()reorderTracks()replaceTracks()addTracks()deleteTracks()featured()forCategory()coverImage()addCoverImage()
Example
// Returns an instance of Spotify\SingleObjects\Playlist $playlist = $client->playlists()->find('<spotify-playlist-id>'); echo $playlist->name; // Returns an instance of Spotify\Support\PaginatedResults $playlists = $client->playlists()->forCategory('<spotify-category-id>'); echo $playlists->results();
Search Resource
You can access the Search resource via the search method from the client.
The search method will return an instance of Spotify\SingleObjects\Search, and every type of results is accessible via its own method.
This end method will return an instance of Spotify\Support\PaginatedResults.
Available methods after the search
audiobooks()albums()artists()episodes()playlists()shows()tracks()
Example
// Returns an instance of Spotify\SingleObjects\Search $results = $client->search('alice cooper', 'artist'); // $results->artists() is an instance of Spotify\Support\PaginatedResults // $artist is an instance of Spotify\SingleObjects\Artist foreach ($results->artists() as $artist) { echo $artist->name; }
Shows Resource
You can access the Shows resource via the shows method from the client.
Available methods:
find()findMultiple()episodes()findSaved()save()deleteSaved()checkSaved()
Example
// Returns an instance of Spotify\SingleObjects\Show $show = $client->shows()->find('<spotify-show-id>'); echo $show->name; // Returns an instance of Spotify\Support\PaginatedResults $episodes = $client->shows()->episodes('<spotify-show-id>'); echo $episodes->results();
Tracks Resource
You can access the Tracks resource via the tracks method from the client.
Available methods:
find()findMultiple()findSaved()save()deleteSaved()checkSaved()audioFeatures()audioAnalysis()recommendations()
Example
// Returns an instance of Spotify\SingleObjects\Track $track = $client->tracks()->find('<spotify-track-id>'); echo $track->name; // Returns an instance of Spotify\Support\PaginatedResults $recommendedTracks = $client->tracks()->recommendations(); echo $recommendedTracks->results();
Users Resource
You can access the Users resource via the users method from the client.
Available methods:
me()profile()topArtists()topTracks()topItems()followPlaylist()unfollowPlaylist()followingPlaylist()followedArtists()followArtists()followUsers()followArtistsOrUsers()unfollowArtists()unfollowUsers()unfollowArtistsOrUsers()followingArtists()followingUsers()followingArtistsOrUsers()
Example
// Returns an instance of Spotify\SingleObjects\User $me = $client->users()->me(); echo $me->display_name;
Testing
composer test
composer phpstan
Linting
composer pint
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
If you discover any security related issues, please email contact@ngiraud.me instead of using the issue tracker.
Credits
This package is inspired by the OpenAI PHP client package made by Nuno Maduro and Sandro Gehri and the Mailcoach API SDK from Spatie.
License
The MIT License (MIT). Please see License File for more information.
ngiraud/spotify-sdk-php 适用场景与选型建议
ngiraud/spotify-sdk-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 113 次下载、GitHub Stars 达 2, 最近一次更新时间为 2023 年 06 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「api」 「client」 「sdk」 「spotify」 「music」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ngiraud/spotify-sdk-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ngiraud/spotify-sdk-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ngiraud/spotify-sdk-php 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
Mock PSR-18 HTTP client
Asynchronous MQTT client built on React
Client for Google Directions API to add interpolated points to a route consisting of given coordinates.
Alfabank REST API integration
A Flickr wrapper to allow you to call the Flickr api with Guzzle as the backend.Goal is to have 100% Flickr api coverage rather than just upload/display photos (currently at 23%).
统计信息
- 总下载量: 113
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 17
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-06-22