Spotify Web API - 客户端凭证 - 访问用户播放列表
Spotify Web API - Client Credentials - Accessing a users playlists
我正在尝试使用客户端凭据流程访问用户播放列表曲目。
Spotify 正在获取播放列表文档:https://developer.spotify.com/web-api/get-playlists-tracks/
Spotify 正在获取客户端凭证文档:https://developer.spotify.com/web-api/authorization-guide/
第一个问题,是否可以使用客户端凭据流程获取用户播放列表曲目?我正在使用此流程,因为我无法弹出登录框供用户登录。
其次,我尝试通过实际复制该页面底部的代码来使用 https://github.com/jwilsson/spotify-web-api-php client credentials flow (Docs: http://jwilsson.github.io/spotify-web-api-php/authorization.html):
<?php
include('vendor/autoload.php');
$session = new SpotifyWebAPI\Session('Tobys client id', 'Tobys secret', 'http://localhost/callback');
// Request a access token with optional scopes
$scopes = array(
'playlist-read-private',
'user-read-private'
);
$session->requestCredentialsToken($scopes);
$accessToken = $session->getAccessToken(); // We're good to go!
// Set the code on the API wrapper
$api->setAccessToken($accessToken);
$playlists = $api->getUserPlaylists('USER_ID', array(
'limit' => 5
));
foreach ($playlists->items as $playlist) {
echo '<a href="' . $playlist->external_urls->spotify . '">' . $playlist->name . '</a> <br>';
}
这给了我 Notice: Undefined variable: api in /var/www/html/dev/testing.php on line 16
我也尝试过使用 $api = new SpotifyWebAPI\SpotifyWebAPI();
创建 API 变量,但这表示我需要用户信息/令牌。
谢谢。
First question, is it possible to get a users playlist tracks using
client credentials flow?
是的,检索播放列表的曲目不需要用户身份验证作为访问令牌的一部分。
I've also tried creating the API variable using $api = new
SpotifyWebAPI\SpotifyWebAPI(); but this says I need user information/
tokens.
查看代码 (Session class, SpotifyWebapi class),您确实应该通过
进行设置
$api = new SpotifyWebAPI\SpotifyWebAPI();
$session = new SpotifyWebAPI\Session($clientId, $clientSecret, $redirectUri);
$api->setAccessToken($session->getAccessToken());
设置完成后,您应该可以像在示例代码中那样使用 getUserPlaylists
方法。
我正在尝试使用客户端凭据流程访问用户播放列表曲目。
Spotify 正在获取播放列表文档:https://developer.spotify.com/web-api/get-playlists-tracks/
Spotify 正在获取客户端凭证文档:https://developer.spotify.com/web-api/authorization-guide/
第一个问题,是否可以使用客户端凭据流程获取用户播放列表曲目?我正在使用此流程,因为我无法弹出登录框供用户登录。
其次,我尝试通过实际复制该页面底部的代码来使用 https://github.com/jwilsson/spotify-web-api-php client credentials flow (Docs: http://jwilsson.github.io/spotify-web-api-php/authorization.html):
<?php
include('vendor/autoload.php');
$session = new SpotifyWebAPI\Session('Tobys client id', 'Tobys secret', 'http://localhost/callback');
// Request a access token with optional scopes
$scopes = array(
'playlist-read-private',
'user-read-private'
);
$session->requestCredentialsToken($scopes);
$accessToken = $session->getAccessToken(); // We're good to go!
// Set the code on the API wrapper
$api->setAccessToken($accessToken);
$playlists = $api->getUserPlaylists('USER_ID', array(
'limit' => 5
));
foreach ($playlists->items as $playlist) {
echo '<a href="' . $playlist->external_urls->spotify . '">' . $playlist->name . '</a> <br>';
}
这给了我 Notice: Undefined variable: api in /var/www/html/dev/testing.php on line 16
我也尝试过使用 $api = new SpotifyWebAPI\SpotifyWebAPI();
创建 API 变量,但这表示我需要用户信息/令牌。
谢谢。
First question, is it possible to get a users playlist tracks using client credentials flow?
是的,检索播放列表的曲目不需要用户身份验证作为访问令牌的一部分。
I've also tried creating the API variable using $api = new SpotifyWebAPI\SpotifyWebAPI(); but this says I need user information/ tokens.
查看代码 (Session class, SpotifyWebapi class),您确实应该通过
进行设置$api = new SpotifyWebAPI\SpotifyWebAPI();
$session = new SpotifyWebAPI\Session($clientId, $clientSecret, $redirectUri);
$api->setAccessToken($session->getAccessToken());
设置完成后,您应该可以像在示例代码中那样使用 getUserPlaylists
方法。