学习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方法中。我应该采取什么想法和其他方法来使其正常工作?预先谢谢你。