Spotify API错误代码400 - 无搜索查询

时间:2017-12-03 00:28:03

标签: javascript http spotify

我正在尝试使用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 - "没有搜索查询"响应。任何人都可以帮助发现为什么我的查询选项没有被正确读取?

感谢。

1 个答案:

答案 0 :(得分:2)

解决:请求库需要在options对象中使用名为qs的查询字符串对象。改变"数据"到" qs"修好了。