How can I get facebook photo with selection view user set (if they use large image). If I use type = "large" or "normal" or "small" in path graph then I get image but It's not square and It's not selection view of user set. So, how can I get photo with square type and it's view of user set
|
|
|
You can get a square picture of higher dimensions than the normal one for See https://developers.facebook.com/docs/reference/api/user/, “picture” connection, quote:
Example: https://graph.facebook.com/zuck/picture?type=square – Mr Zuckerberg’s “normal” square profile pic, size 50x50 https://graph.facebook.com/zuck/picture?width=100&height=100 – 100x100 pixels, perfect match for requested size https://graph.facebook.com/zuck/picture?width=150&height=150 – asking for 150x150, getting 156x156 instead. If you can live with maybe sometimes getting images that might be a little bigger (or smaller) then the requested size, you should be fine. Otherwise it’ll take some testing to try and figure out if there are certain square image sizes that Facebook will always have “in stock” and deliver exact matches for, or if it might differ for every user depending on the picture they uploaded. |
|||||||
|
|
Get the photo by querying for the user's profile data using FQL. In your case you shouldn't need any access token. There is a column called
Use the Graph API Explorer for testing your query. |
|||
|
|
|
Try using the type
The square size is limited to 50x50. If you want a large size, you will have to enlarge the square version or crop the large version. If you don't mind retrieving and cropping an image yourself, follow my tutorial here for code to do exactly that. It will let you generate square images larger than 50px. |
||||
|
|