gpt4 book ai didi

javascript - 创建 Spotify 播放列表时无法在响应对象中获取播放列表 ID

转载 作者:行者123 更新时间:2023-12-03 12:42:29 25 4
gpt4 key购买 nike

我响应 POST https://api.spotify.com/v1/users/ 获得的播放列表对象{user_id}/playlists 应包含播放列表“id”属性。

https://developer.spotify.com/documentation/web-api/reference/playlists/create-playlist/

但是,我得到的响应对象有一个“id”属性,它给出了用户 ID 而不是播放列表 ID。

我能够创建播放列表,但在不知道播放列表 ID 的情况下无法向其中添加轨道。

我的代码:

return fetch(`https://api.spotify.com/v1/users/${userId}/playlists`,
{
headers: {Authorization: `Bearer ${accessToken}`, 'Content-Type': 'application/json'},
method: 'POST',
body: JSON.stringify({name:playlistName})
}).then(response => response.json()
).then(jsonReponse => {
const playlistId = jsonResponse.id;
console.log(playlistId); // not getting playlist id!
console.log(jsonResponse);
console.log(trackURIs);
console.log(accessToken);
});

范围默认是公开的。

是否其他人在创建播放列表后无法访问播放列表 ID?

最佳答案

语法错误:

).then(jsonReponse => {

缺少's'

关于javascript - 创建 Spotify 播放列表时无法在响应对象中获取播放列表 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59310669/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com