Can I get a big picture for graph objects?
Example:
//take id,name,picture,description from pages, that I like:
http://graph.facebook.com/me/likes?fields=id,name,picture,description&access_token=[token]
But how to get big picture of all these pages in one query? Is this possible?
Ok so essentially, you don’t need to request the image at all. Once you have the
object_id, and you want to display a large picture, all you have to do is use this URL –I don’t store any profile picture URL’s anymore, all I have to do is know the user/page_id and I have access to the profile picture via that
object_id.For an
<img>element, just place the URL in thesrcattribute –