Skip to content

Instantly share code, notes, and snippets.

@jimwhimpey
Created April 26, 2016 23:25
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 jimwhimpey/7d1ca9308e408a1fc658d3c48c52f938 to your computer and use it in GitHub Desktop.
Save jimwhimpey/7d1ca9308e408a1fc658d3c48c52f938 to your computer and use it in GitHub Desktop.
Flickr SDK example photostream request
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