我正在使用spotify api和this php library。
我在spotify开发门户网站中创建了一个应用程序,其中包含重定向网址。这一切都很好。
我的Spotify API代码如下所示:
<?php
require 'vendor/autoload.php';
$session = new SpotifyWebAPI\Session(
'CLIENT_ID',
'CLIENT_SECRET',
'index.html'
);
$api = new SpotifyWebAPI\SpotifyWebAPI();
if (isset($_GET['code'])) {
$session->requestAccessToken($_GET['code']);
$api->setAccessToken($session->getAccessToken());
print_r($api->me());
} else {
$options = [
'scope' => [
'user-read-email',
],
];
header('Location: ' . $session->getAuthorizeUrl($options));
die();
}
?>
上面的代码应重定向到index.html
(它确实如此),然后在index.html页面上我想显示这些用户详细信息,但我不确定如何执行此操作。
有谁知道如何实现这个目标?
我的index.html
文件如下所示:
<h1>Want to see the user info here!</h1>