直截了当的问题,希望能够直截了当地回答。我正在尝试使用请求通过Node.js实现客户端凭据流。这是我的代码
var request = require('request');
var payload = config.spotify.clientID + ":" + config.spotify.clientSecret;
var encodedPayload = new Buffer(payload).toString("base64");
var opts = {
url: "https://accounts.spotify.com/api/token",
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
"Authorization": "Bearer " + encodedPayload
},
body: "grant_type=client_credentials&scope=playlist-modify-public playlist-modify-private"
};
request(opts, function (err, res, body) {
console.log('error', err);
console.log('status', res.statusCode);
console.log('body', body);
});
无论我做什么,响应体总是
{"error":"invalid_client"}
我尝试使用curl发出请求,结果相同。
$ curl -X POST -H 'Authorization: Bearer <base64encoded client_id:client_secret>' -d 'grant_type=client_credentials&scope=playlist-modify-public playlist-modify-private' https://accounts.spotify.com/api/token
这意味着凭证有问题。我肯定在我的应用程序中使用正确的clientID和clientSecret,这让我相信它是导致问题的编码。
我正在编码吗?如果是这样,还有什么可能是原因?
答案 0 :(得分:7)
替换
"Authorization": "Bearer " + ...
带
"Authorization": "Basic " + ...
看看它是否效果更好。