I have uploaded some pics in "photostream" though the Flickr website.
Now I want to integrate Flickr in my Android app. How can I download those same pics in my device using the Flickr API? I did the "login" part for these but I don't know how to fetch my uploaded images.
flickr.people.getPhotos
or flickr.people.getPublicPhotos
Return photos from the given user's photostream. Only photos visible to the calling user will be returned. This method must be authenticated; to return public photos for a user, use
flickr.people.getPublicPhotos
.
Note that the API docs lists this project https://code.google.com/p/flickrj-android/ which might make your life easier. In there it is the LoadPhotostreamTask
.