English 中文(简体)
播放列表无效值返回
原标题:Playlist null value return
  • 时间:2012-05-24 07:57:51
  •  标签:
  • spotify

我仍然在开发一个“点点”软件, 但我认为在API里有一些窃听器 他们把它报告为我的一个窃听器。

然后我用“从播放列表 URL 获取歌曲” 函数对教程应用程序进行测试,然后我用“从播放列表 URL 获取歌曲”来进行测试,这些功能也使用像这样的回调功能

var pl = models.Playlist.fromURI(playlist_url, function(playlist)

但是,即使使用回击函数在第一次装载时也有一些无效值。

与我自己的播放列表,我没有问题,但与其他用户的播放列表,我得到了问题。

“https://i.sstatic.net/ggDyH.png' alt=“screenshot”/> https://i.sstatic.net/ggDyH.png' alt=“screenshot”/>

还有谁知道这个问题吗 有没有办法报告API窃听器

对于那些想测试我的播放列表的人来说:http://open.ptify.com/user/gpsnail/playlist/6qhk1FhYKwyanNAu91GftW

问题回答

Spotify Apps API 0.X 不再支持。 可能是有一个错误, 数据在实际获取之前就已经提供 。 我建议您使用更新的 API 版本, 您可以在其中获取播放列表的内容 :

    require([ $api/models ], function(models) {

      var playlistURI =  spotify:user:gpsnail:playlist:6qhk1FhYKwyanNAu91GftW ;

      models.Playlist.fromURI(playlistURI)
        .load( tracks )
        .done(function(p) {
            p.tracks.snapshot()
            .done(
                function(snapshot) {
                    for (var i = 0, l = snapshot.length; i < l; i++) {
                       var track = snapshot.get(i);

                       // we print out some basic data from the track       
                       console.log(track.uri, track.name);
                    }
                })
            .fail(
                function(){
                    console.error( Error retrieving snapshot );
                });
        })
        .fail(function(){
            console.error( Error retrieving playlist information );
        });
    });

有关如何升级至升级指南的更新的更多信息。





相关问题
Spotify API get Related Artists

Is there a way to get a list of related artists through the spotify api. Like the small list that displays in the actual program? Would be very useful if so, but I am not so sure Cheers

Spotify Intent in android?

I would like to play a certain spotify playlist, anyone knows if there is any Spotify intent filter available? thanks!

Android - Running applications programmatically

Is there way to run programs like spotify when my phone connects spesific bt device. I have bt stereo on my car and I want my phone start play music from spotify.

No response from jQuery ajax call

I ve been struggling with this for way too long tonight, and I haven t found anything useful when searching for answers. It s probably very simple. I m trying to load data using the Spotify Metadata ...

热门标签