问题内容 我想将切片中的所有曲目放入新的播放列表中,但它向我抛出 insufficient clientscope 错误。这是我的代码,客户端是使用 auth 创建的 func cop
我想将切片中的所有曲目放入新的播放列表中,但它向我抛出 insufficient clientscope
错误。这是我的代码,客户端是使用 auth
创建的
func copyTracksToPlaylist(filteredTracks []spotify.PlaylistItem, client *spotify.Client, ctx context.Context) error {
newPlaylistID := os.Getenv("NEW_PLAYLIST_ID")
filteredSongsIDs := extractTracksIDs(filteredTracks)
return client.ReplacePlaylistTracks(ctx, spotify.ID(newPlaylistID), filteredSongsIDs...)
}
我在这里看到了python中可能的解决方案,但我不知道如何通过zmb3将其转换为Go的api
因此,在查看 GitHub 中的更多代码后,我发现问题出在 auth
的声明中,我没有添加必要的范围。它应该看起来像这样:
auth = spotifyauth.New(spotifyauth.WithClientID(os.Getenv("SPOTIFY_ID")), spotifyauth.WithClientSecret(os.Getenv("SPOTIFY_SECRET")), spotifyauth.WithRedirectURL(RedirectUrl), spotifyauth.WithScopes(spotifyauth.ScopeUserReadPrivate, spotifyauth.ScopePlaylistModifyPublic, spotifyauth.ScopePlaylistModifyPrivate, spotifyauth.ScopeUserLibraryRead, spotifyauth.ScopeUserLibraryModify))
--结束END--
本文标题: 客户端范围不足 - Spotify API Golang
本文链接: https://lsjlt.com/news/561417.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-05
2024-04-05
2024-04-05
2024-04-04
2024-04-05
2024-04-05
2024-04-05
2024-04-05
2024-04-04
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0