如何使用Spotify网络API获取用户的播放列表列表?

吉利斯·韦勒布鲁克(Gillis Werrebrouck)

我正在研究一个项目,我想在Spotify上获取已登录用户的所有播放列表的列表。目前,我可以登录并查看用户信息(通过按照Spotify上的演示进行操作)。现在,我想获取已登录用户的播放列表,这就是我遇到的问题。

这是我的代码:

/**
 * This is an example of a basic node.js script that performs
 * the Authorization Code oAuth2 flow to authenticate against
 * the Spotify Accounts.
 *
 * For more information, read
 * https://developer.spotify.com/web-api/authorization-guide/#authorization_code_flow
 */

var express = require('express'); // Express web server framework
var request = require('request'); // "Request" library
var querystring = require('querystring');
var cookieParser = require('cookie-parser');

var client_id = '2e54c888b964418588d8c274d2b9dd5e'; // Your client id
var client_secret = 'c7b15e90a3cb4891b3dbcd79ed8bcfa0'; // Your secret
var redirect_uri = 'http://localhost:8888/callback'; // Your redirect uri

/**
 * Generates a random string containing numbers and letters
 * @param  {number} length The length of the string
 * @return {string} The generated string
 */
var generateRandomString = function(length) {
  var text = '';
  var possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';

  for (var i = 0; i < length; i++) {
    text += possible.charAt(Math.floor(Math.random() * possible.length));
  }
  return text;
};

var stateKey = 'spotify_auth_state';

var app = express();

app.use(express.static(__dirname + '/public'))
   .use(cookieParser());

app.get('/login', function(req, res) {
  var state = generateRandomString(16);
  res.cookie(stateKey, state);

  // your application requests authorization
  var scope = 'user-read-private user-read-email';
  res.redirect('https://accounts.spotify.com/authorize?' +
      querystring.stringify({
        response_type: 'code',
        client_id: client_id,
        scope: scope,
        redirect_uri: redirect_uri,
        state: state
      }));
});

app.get('/playlists', function(req, res) {
  // your application requests authorization
  var scope = 'playlist-read-private';
  res.redirect('https://api.spotify.com/v1/me/playlists');
});

app.get('/callback', function(req, res) {

  // your application requests refresh and access tokens
  // after checking the state parameter

  var code = req.query.code || null;
  var state = req.query.state || null;
  var storedState = req.cookies ? req.cookies[stateKey] : null;

  if (state === null || state !== storedState) {
    res.redirect('/#' +
      querystring.stringify({
        error: 'state_mismatch'
      }));
  } else {
    res.clearCookie(stateKey);
    var authOptions = {
      url: 'https://accounts.spotify.com/api/token',
      form: {
        code: code,
        redirect_uri: redirect_uri,
        grant_type: 'authorization_code'
      },
      headers: {
        'Authorization': 'Basic ' + (new Buffer(client_id + ':' + client_secret).toString('base64'))
      },
      json: true
    };

    request.post(authOptions, function(error, response, body) {
      if (!error && response.statusCode === 200) {

        var access_token = body.access_token,
            refresh_token = body.refresh_token;

        var options = {
          url: 'https://api.spotify.com/v1/me',
          headers: { 'Authorization': 'Bearer ' + access_token },
          json: true
        };

        // use the access token to access the Spotify Web API
        request.get(options, function(error, response, body) {
          console.log(body);
        });

        // we can also pass the token to the browser to make requests from there
        res.redirect('/#' +
          querystring.stringify({
            access_token: access_token,
            refresh_token: refresh_token
          }));
      } else {
        res.redirect('/#' +
          querystring.stringify({
            error: 'invalid_token'
          }));
      }
    });
  }
});

app.get('/refresh_token', function(req, res) {

  // requesting access token from refresh token
  var refresh_token = req.query.refresh_token;
  var authOptions = {
    url: 'https://accounts.spotify.com/api/token',
    headers: { 'Authorization': 'Basic ' + (new Buffer(client_id + ':' + client_secret).toString('base64')) },
    form: {
      grant_type: 'refresh_token',
      refresh_token: refresh_token
    },
    json: true
  };

  request.post(authOptions, function(error, response, body) {
    if (!error && response.statusCode === 200) {
      var access_token = body.access_token;
      res.send({
        'access_token': access_token
      });
    }
  });
});

console.log('Listening on 8888');
app.listen(8888);

带有以下内容的行:

app.get('/playlists', function(req, res) {
  // your application requests authorization
  var scope = 'playlist-read-private';
  res.redirect('https://api.spotify.com/v1/me/playlists');
});

是我自己写的,但我不知道如何使它起作用。

戒指

Spotify APIplaylists端点需要身份验证令牌

非常原始的示例,在这些行中,您可以获得Auth Token

  // use the access token to access the Spotify Web API
    request.get(options, function(error, response, body) {
      console.log(body);
      token = access_token;
    });

然后,获取播放列表的代码:

var token = '';                                                                                                                                                                                                                           

app.get('/playlists', function(req, res) {
  var state = generateRandomString(16);
  res.cookie(stateKey, state);
  // your application requests authorization
  var scope = 'playlist-read-private';
  res.redirect('https://api.spotify.com/v1/me/playlists?' +
    querystring.stringify({
      access_token: token,
      token_type: 'Bearer',
      response_type: 'code',
      client_id: client_id,
      scope: scope,
      redirect_uri: redirect_uri,
      state: state
   }));
});

首先,您访问“ http:// localhost:8888 / login ”进行身份验证,然后访问“ http:// localhost:8888 / playlists ”获取播放列表。

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章

如何从Spotify Web API获取播放列表的特定快照?

Android YouTube获取用户播放列表

Spotify获取所有用户的播放列表

Spotify Web API播放播放列表

Spotify Web API,获取关注播放列表的曲目

如何使用Soundcloud API获取播放列表的每个曲目?

如何使IOS应用程序使用其Web-API播放Spotify播放列表?

Spotify:创建播放列表

YouTube API播放列表列表未提供播放列表中的所有视频

使用youtube-dl从播放列表列表中获取视频信息

如何从 YouTube API 获取播放列表的标题

“创建播放列表”,Spotify Web API返回201,但没有播放列表对象

Spotify API创建临时播放列表未加载

Spotify API 创建播放列表 - 解析 JSON 时出错

如何获取YouTube混合播放列表?

如何使用诺基亚音乐API创建播放列表?

如何使用Youtube Javascript API浏览播放列表?

如何在Spotify APi上获得播放列表的歌曲推荐

使用Spotify Apps API从给定播放列表中的特定曲目开始

如何在没有 OAuth2 的情况下获取 youtube-api 频道中的播放列表列表?

有没有办法在Spotipy(Spotify Python Api)中获取包含特定歌曲的播放列表的列表

将iTunes播放列表导入Spotify

Spotify协作播放列表中的注释

如何使用 videojs 播放列表?

如何使用You Tube数据API版本3目标C与最终用户共享我的youtube播放列表

RAILS - 如何允许用户将音乐/Spotify 播放列表添加到他们的个人页面?

如何从Azure Map API获取用户列表

如何通过 Gitlab API 获取用户的组列表

使用PHP和Facebook API获取用户朋友列表