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.

It is possible to get the actual image url of a Facebook image using the Graph api??

For instance, for the below photo http://www.facebook.com/photo.php?fbid=357755307655174

the actual URL is https://fbcdn-sphotos-a-a.akamaihd.net/hphotos-ak-ash4/252428_530045532341_5136_n.jpg

Is there some graph api way to achieving this?

share|improve this question

1 Answer

up vote 2 down vote accepted

Is there some graph api way to achieving this?

Therefore, you’d have to look at the source field of the photo object:

source:

The source image of the photo - currently this can have a maximum width or height of 720px, increasing to 960px on 1st March 2012

string representing a valid URL

That’ll give you the original size the photo was uploaded for smaller images, or resized to max. 960px in each direction.

For even larger sizes, you’d have to check the images field:

images:

The 4 different stored representations of the photo

array of objects, containing height, width, and source fields

This “promises” to deliver much larger sizes (f.e. 2048×1417px) – but be aware, these entries will still deliver a smaller image if the original one wasn’t as large as requested.

share|improve this answer
So I will have to add user_photos permission? Darn! I did not mention this in my question, but the photo in question is uploaded BY ME from MY APP.. FB, after uploading, returns only Photo ID and POST ID... Even if I am the one uploading the photo, is user_photos permission the only way to get the source URL? – SatheeshJM Jan 9 at 18:24

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.