使用Spotify Web API时出现意外响应?

时间:2017-06-09 16:39:08

标签: javascript reactjs spotify node-modules axios

我遵循Spotify Web Api教程here中概述的隐式授权流模型。 但是,我没有按预期登录Spotify,而是收到了一个响应对象。我的get请求似乎是正确的,因为当我将其直接粘贴到浏览器中时,系统会提示我按预期登录:

使用Axios http请求库获取请求:

axios({
    method: 'GET',
    url: url
})
.then(function (response) {
    console.log('RESPONSE', response)
})
.catch (function (error) {
    console.log('ERROR', error)
})

正在返回的响应对象:

Object {
  client: Object,
  country: "US",
  locales: Array(2),
  BON: Array(3)
}
BON
  :
  Array(3)
client
  :
  Object
name
  :
  "MusicMaster"
__proto__
  :
  Object
country
  :
  "US"
locales
  :
  Array(2)
__proto__
  :
  Object

那么我做错了什么?

0 个答案:

没有答案