Created
August 26, 2014 03:25
-
-
Save philspitler/263a8ab9d8f94c89f24a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| '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