Skip to content

Instantly share code, notes, and snippets.

@philspitler
Created August 26, 2014 03:25
Show Gist options
  • Select an option

  • Save philspitler/263a8ab9d8f94c89f24a to your computer and use it in GitHub Desktop.

Select an option

Save philspitler/263a8ab9d8f94c89f24a to your computer and use it in GitHub Desktop.
'use strict';
var request = require('request');
request('https://api.spotify.com/v1/albums/0sNOF9WDwhWunNAHPD3Baj', function (error, response, body) {
if (!error && response.statusCode === 200) {
console.log(body);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment