我正在尝试使用Spotify API搜索功能来接收相册数据。这是我的要求:
request.post(authOptions, function(error, response, body) {
if (!error && response.statusCode === 200) {
// use the access token to access the Spotify Web API
var token = body.access_token;
var options = {
url: 'https://api.spotify.com/v1/search',
data: {
q: 'currents',
type: 'album',
},
headers: {
'Authorization': 'Bearer ' + token
},
json: true
};
request.get(options, function(error, response, body) {
console.log(body);
});
}
});
然而,当这段代码执行时,我不断得到一个错误代码400 - "没有搜索查询"响应。任何人都可以帮助发现为什么我的查询选项没有被正确读取?
感谢。
答案 0 :(得分:2)
解决:请求库需要在options对象中使用名为qs的查询字符串对象。改变"数据"到" qs"修好了。