I've been using the profile/pic_crop option of the facebook graph api to request high resolution cropped profile images and detailed it's user here: http://tactilefusion.com/tactile/high-resolution-cropped-facebook-profile-images/
However today I've noticed that this appears to have stopped working with the request returning 'Unknown path components: /profile'.
The facebook documentation still documents the profile path along with pic_crop and I can find no details of it being depreciated.
Any ideas?
Try the following link: http://graph.facebook.com/tactilefusion/profile?fields=pic_crop it returns
{
"error": {
"message": "Unknown path components: /profile",
"type": "OAuthException",
"code": 2500
}
}
it used to return
{
"data": [
{
"pic_crop": {
"uri": "http://profile.ak.fbcdn.net/hprofile-ak-prn1/t1/p320x320/10992_567316339955054_1439725697_n.jpg",
"width": 320,
"height": 320,
"left": 0,
"top": 0,
"right": 1,
"bottom": 1
},
"id": "447312341955455"
}
]
}
If this has been depreciated does anyone know the new way to get a high res (better than the default 50x50) version of the profile picture cropped to a square as facebook does on it's profile pages?