直截了当的问题,希望能给出直截了当的答案。我正在尝试使用请求通过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,这使我相信是导致问题的编码。

我编码正确吗?如果是这样,还有什么可能的原因?

最佳答案

代替

"Authorization": "Bearer " + ...


"Authorization": "Basic " + ...

看看效果是否更好。

09-16 11:27