2012-06-29 99 views
0

我已经阅读了这个问题:How to create a playlist and get the URI of it in a spotify apps API?如何使用spotify应用程序API获取在Spotify应用程序中创建播放列表的URI?

但我在想,如果现在有可能做到这一点,或者如果你能给我一个解决方案,我真正需要的URI,我可以创造一个公开播放或某物类似的?我需要创建一个应用程序类似soundrop :)

谢谢很多

萨拉

+0

不,仍然不可能......的 –

+0

可能重复[如何创建播放列表,并获得它的URI在Spotify的应用程序的API?](HTTP://计算器.com/questions/8802989/how-to-create-a-playlist-and-get-the-uri-of-spot-apps-api) – iKenndac

+0

SoundDrop只能通过让用户获得播放列表URI将播放列表拖到应用程序上。 – iKenndac

回答

0

我相信,今天它是可能的。下面的例子的CoffeeScript工作对我

sp = getSpotifyApi 1 
models = sp.require 'sp://import/scripts/api/models' 

exports.exports.init = -> 
    playlist = new models.Playlist() 
    console.log "The temporary playlist is " + playlist.uri 
相关问题