Skip to content

Instantly share code, notes, and snippets.

@etjossem
Last active February 19, 2016 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save etjossem/13123735e5ae13679667 to your computer and use it in GitHub Desktop.
Save etjossem/13123735e5ae13679667 to your computer and use it in GitHub Desktop.
// Gets an album's info from Spotify.
var album_id = 1;
$.ajax({
url: "https://api.spotify.com/v1/albums/" + album_id,
type: "GET",
success: function(d) {
console.log(d);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment