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 wonder if it is possible to get the cover photo in just one call.

Like > https://graph.facebook.com/PAGEID/picture?type=square gives you the photo right away.

Is it possible to do the same with this > https://graph.facebook.com/PAGEID?fields=cover

without having to parse it with json?

What i want is the coverphoto right away.

Thanx.

share|improve this question
possible duplicate of Getting Facebooks' Cover Photo via PHP SDK & Graph API – Igy Jan 14 at 5:38

1 Answer

I wonder if it is possible to get the cover photo in just one call.

No you can't.

You may use FB api instead-

$albumCover = $facebook->api("/[album_id]?fields=picture", "get");

echo "<img src='".$albumCover['picture']."' />";

Adding just one extra line wont bother you I guess.

share|improve this answer
Actually it does.... – Richard Stenstierna Jan 11 at 17:35
Then in that case, it would be nice if you can share your answer. – Shadowfax Jan 11 at 17:36
Actually it does.... I am already calling my page feed to get all the status and comments. The thing i want to do is to show both the cover photo and profile pic, name and message in the rows. But to make a call for the cover photo i would have to use data.from.id to make the > graph.facebook.com/data.from.id?fields=cover and then parse data.cover.source to get the image. And i dont know how to get that to work..... – Richard Stenstierna Jan 11 at 17:40
Its just impossible..... – Richard Stenstierna Jan 11 at 17:41

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.