Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 Spotify Apps API 使播放列表协作?
javascript 中的 Playlist 对象具有 Collaborative 属性,但我认为这仅用于检查当前的协作状态。
是的,您将属性设置为 true,它将是一个协作播放列表,但我想您必须拥有该播放列表的权限才能使其正常工作。我试过这个,它适用于我创建的播放列表。
p = models.Playlist.fromURI('spotify-uri'); p.data.collaborative = true;
在此之后,播放列表在我的客户端中显示为协作播放列表。