Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using facebook android sdk for accessing facebook albums. I've got the json that contains all the albums object. Want to get the cover photo of each album. This is the object:

 "id": "3486732467234",
 "from": {
    "name": "Persons Name",
    "id": "Persons ID"
 },
 "name": "Vacation",
 "location": "City",
 "link": "https://www.facebook.com/album.php?fbid=434235&id=324343&aid=2430",
 "cover_photo": "3489234432",
 "privacy": "everyone",
 "count": 60,
 "type": "normal",
 "created_time": "2007-06-03T23:01:16+0000",
 "updated_time": "2011-03-18T19:46:43+0000",
 "can_upload": true

} How can i get the cover_photo image with this value "cover_photo": "3489234432" ?? I am able to get this value in a string..

Thanks

share|improve this question
By looking up the photo ID on the Graph - graph.facebook.com/4346234652025?access_token= – CBroe Nov 23 '12 at 13:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.