2012-06-29 168 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 
相關問題