使用客户凭证流刷新Spotify令牌

时间:2018-07-05 21:59:52

标签: javascript node.js api express spotify

我已设置正确的客户端凭据流程,并且可以获取令牌来拨打电话,但是在3600之后,我想要获取新令牌(我的应用仅使用“ public” spotify端点) 我使用https://github.com/thelinmichael/spotify-web-api-node

对不起,我的英语。

const express = require('express');
const router = express.Router();
const SpotifyWebApi = require('spotify-web-api-node');

// Create the api object with the credentials
const spotifyApi = new SpotifyWebApi({
  clientId: 'xxxxxxxxxxxxxxxxxxxxxxxxx',
  clientSecret: 'xxxxxxxxxxxxxxxxxxxxxxxxx'
});

// Retrieve an access token.
spotifyApi.clientCredentialsGrant().then(
  function(data) {
    console.log('The access token expires in ' + data.body['expires_in']);
    console.log('The access token is ' + data.body['access_token']);
    // Save the access token so that it's used in future calls
    spotifyApi.setAccessToken(data.body['access_token']);
    // console.log('The refresh token is ' + spotifyApi.getRefreshToken());
  },
  function(err) {
    console.log('Something went wrong when retrieving an access token', err);
  }
);

router.get('/getArtistAlbums', function(req, res, next) {
  const user_id = req.query['id'];
  spotifyApi
    .getArtistAlbums(user_id, {
      limit: 10,
      offset: 20
    })
    .then(
      function(data) {
        res.send(data.body);
      },
      function(err) {
        console.error(err);
      }
    );
});

1 个答案:

答案 0 :(得分:0)

与其刷新获取的令牌(使用clientCredentialsGrant时不可能),只需请求一个新令牌。

//This function will create a new token every time it's called
function newToken(){
    spotifyApi.clientCredentialsGrant().then(
        function(data) {
            ...

            // Save the access token so that it's used in future calls
            spotifyApi.setAccessToken(data.body['access_token']);
        },
        function(err) {
            ... //Error management
        }
    );
}

//When the app starts, you might want to immediately get a new token
newToken();

//And set an interval to "refresh" it (actually creating a new one) every hour or so
tokenRefreshInterval = setInterval(newToken, 1000 * 60 * 60);
相关问题