Accessing Spotify Metadata API from within a Spotify app?

被刻印的时光 ゝ 提交于 2019-12-01 10:30:30

This is not the finest way to solve your problem. There is a direct API for searching within your app. See Juan's solution.

But you could also talk to ws.spotify.com directly when you add the domain to your app's manifest.json.

"RequiredPermissions": ["http://ws.spotify.com" ]

e.g. http://ws.spotify.com/search/1/track.json?q=kaizers+orchestra, see their Developer Site. The response contains the header "Access-Control-Allow-Origin: *", so you should be able to query from within your app.

You can use sp.core.search

sp.core.search("query",
    {onSuccess: function(result) {
        // parse result
        }
    }
);

sp.core.getMetadata if you have the uri

    sp.core.getMetadata("uri", {
        onSuccess: function(data){
            console.debug(data);
        },
        onFailure: function(){
                //...
        },
    });
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!