From this question, I know that we can obtain user profile picture in square shape by appending ?type=square
in Graph API URL , such as :
https://graph.facebook.com/{FACEBOOK_USER_ID}/picture?type=square
But how about the images in wall post ? I know that I can obtain the picture URLs ( of different dimensions ) by this Graph API call :
https://graph.facebook.com/{OBJECT_ID}/
However, the type parameter does not support square
. It supports thumbail
, normal
and album
only. But none of them returns the square image shown in timeline . ( I also need the reposition information, as I used the "Reposition Photo" in Timeline ). Does Graph API provide such information ?
Note: I use PHP , but I think the programming language is independent