Created
April 26, 2016 23:25
-
-
Save jimwhimpey/7d1ca9308e408a1fc658d3c48c52f938 to your computer and use it in GitHub Desktop.
Flickr SDK example photostream request
This file contains 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
flickr | |
.request() | |
.people("40575690@N00") // ID or path alias | |
.media() | |
.get() | |
.then(function (response) { | |
// An array of media objects belonging to the person | |
}, function (err) { | |
// Any errors returned | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment