Skip to content

Instantly share code, notes, and snippets.

@mager
Created February 11, 2012 22:50
Show Gist options
  • Save mager/1804852 to your computer and use it in GitHub Desktop.
Save mager/1804852 to your computer and use it in GitHub Desktop.
Spotify Apps API - Show "Share" popup
/* Instantiate the global sp object; include models & views */
var sp = getSpotifyApi(1);
var models = sp.require("sp://import/scripts/api/models");
/* The <div /> that will contain the popup */
var element = $('#share');
/* The Spotify URI of the content you want to share */
var content = 'spotify:track:76a6mUM5r7VPexAj37TLjo';
/* Display the popup */
models.application.showSharePopup(element[0], content);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment