When developing a spotify app, how do I show a standard spotify "share" popover that will do the right thing for a song of choice?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

At the moment, there's no public API for this. We'll be releasing an updated build soon that includes it.

Until then, you can use the following private API. Please note that you must move over the the public API once released if you want your application to be published in the App Finder:

sp.social.showSharePopup(x, y, uri);

... where x and y are the coordinates inside your app where the popup is to be shown.

link|improve this answer
Great! Now the problem is that playlists (always?) seem to have an empty uri property. We're creating our own, and everything else seems to be filled in, but the uri stays empty. Ideas? – hakanw Jan 9 at 12:14
Just to follow up on this, we just released a developer preview build that contains a public API for this. See the "Application" class in the reference (developer.spotify.com/download/spotify-apps-api/preview/…) for an example. – iKenndac Jan 10 at 17:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.