尝试使用带有反应的 Spotify Web Api 检索推荐时,我收到 400 个无效请求。我已经让它检索我正在播放的歌曲,所以我知道 OAuth2 工作正常。
检索推荐的函数是:
// Scopes
var scope = 'user-read-private user-read-email user-read-playback-state';
// Function
getRecommendations() {
var data = {
seed_tracks: [
'spotify:track:3YSgPxT1T1HroVJxpN2aye',
'spotify:track:2TxaEF8u2Po2c3RqevD3sd'
],
seed_artists: [
'spotify:artist:1p2z4hiBCkxfWZ6OvyGBSA',
'spotify:artist:5SwsSD9zyWaWeVyK9qIW9l'
],
seed_genres: [
'classical',
'country'
],
};
spotifyWebApi.getRecommendations(data).then((response) => {
this.setState({
nowPlaying: {
test: response.tracks,
}
})
})
}
知道我做错了什么吗?
青春有我
相关分类