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 trying to get the album cover photo using:

$facebook->api("/{ALBUM_ID}/picture", "get");

but if I use the above code I get nothing to return, and if I try using it with the Open Graph API explorer on Facebook, it just sits there with the loading graphic.

If I access it from my browser, I do get a return image.

Does the call above not return an image URL? If not, what does it return and how do I use it?

share|improve this question

1 Answer

up vote 3 down vote accepted

There is no /{album_id}/picture field listed in the API for an album, but it does seem to work the same way as it does for users, pages, etc.

Note that most places in the API where /{object ID}/picture is documented and supported, it returns a HTTP 301 redirect to the photo, suitable for embedding directly into an <img src=''/> tag, so it won't work in most code or in the Graph API Explorer.

For albums, that does work, but probably isn't what you want because you'd need to embed the access token in the URL used in the img tag

For this case (and other similar cases), you can request /{album_id}?fields=picture and get back the URL of the cover photo instead of a redirect to it

share|improve this answer
Oh I see. I was reading the documentation wrong then. Thank you very much sir. – Jacob Apr 23 '12 at 18:59
Is there anyway to get a square or small size using your method? – Jacob Apr 23 '12 at 19:06
1  
Never mind got it! Just need to pass type=small – Jacob Apr 23 '12 at 19:10

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.