无法通过Spotify API获得用户的顶级歌手和曲目

时间:2018-08-13 07:26:08

标签: javascript json reactjs spotify fetch-api

学习Spotify API,并能够通过react访问除此端点之外的所有端点。这是我在(不正确的)解决方案中留下的代码。

fetch('https://api.spotify.com/v1/me/top/artists', {
  headers: { Authorization: 'Bearer ' + accessToken },
})
  .then(response => response.json())
  .then(data => console.log(data.items));

这是在我的React应用程序的componentDidMount方法中。我应该采取什么想法和其他方法来使其正常工作?预先谢谢你。

0 个答案:

没有答案