gpt4 book ai didi

javascript - 使用 Spotify Apps API 从给定播放列表中的特定轨道开始

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

我正在尝试使用 Spotify API 启动特定轨道,但无论我做什么,我似乎都无法让它工作。我不明白文档以及在哪里放置轨道索引。

这里是 API 文档:https://developer.spotify.com/docs/apps/api/1.0/api-models-player.html

require(['$api/models'], function(models) {
models.player.playContext(models.Playlist.fromURI('spotify:user:cevil:playlist:5f4EBgrnSf86Hr86kL4S90:index:5'));
});

最佳答案

playContext 文档指出该方法采用四个参数,第二个参数是索引。

The first item in the context to play. This must be a positive number. If left out, the first playable item in the context will start playing.

使用您的代码片段:

require(['$api/models'], function(models) {
var index = 2;
models.player.playContext(models.Playlist.fromURI('spotify:user:cevil:playlist:5f4EBgrnSf86Hr86kL4S90'), index);
});

索引从 0 开始,因此本示例将播放播放列表中的第三首轨道。

关于javascript - 使用 Spotify Apps API 从给定播放列表中的特定轨道开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24294350/

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