Try with more than 960, i.e 961! You'll get the maximum size of the picture, if available!
Edit:
Ok sorry, I answered too fast! This only works for profile pictures with Graph API, but it's still possible to get the biggest size of a picture with FQL. Let me sum up everything.
Getting the max size of a picture with FQL
select images from photo where object_id = PHOTO_ID
images gives back "an array of objects containing width, height, source each representing the various photo sizes". The result looks like this:
{
"data": [
{
"images": [
{
"height": 1536,
"width": 2048,
"source": "https://fbcdn-sphotos-c-a.akamaihd.net/hphotos-ak-prn1/s2048x2048/65169_XXXXXX_n.jpg"
},
{
"height": 720,
"width": 960,
"source": "https://fbcdn-sphotos-c-a.akamaihd.net/hphotos-ak-prn1/65169_44590146XXXXXXXXn.jpg"
},
{
"height": 540,
"width": 720,
"source": "https://fbcdn-sphotos-c-a.akamaihd.net/hphotos-ak-prn1/s720x720/65169_44XXXXXXX0984540_n.jpg"
},
{
...
},
{
"height": 97,
"width": 130,
"source": "https://fbcdn-photos-a.akamaihd.net/hphotos-ak-prn1/s75x225/65169_44XXXXX_s.jpg"
}
],
}
]
}
You are only interested by the first element of the array. You can ignore the other sizes if they are not useful to you.
Getting the max size of a picture using Graph API
/USER_ID?fields=images
The result will be the same.
Getting the max size of a profile picture using Graph API
You can get the profile picture with the biggest size directly.
/USER_ID?fields=picture.height(961)
Result:
{
"id": "PROFILE_ID",
"picture": {
"data": {
"url": "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-prn1/615962_4486XXXXXXXXX3_601495975_o.jpg",
"width": 1536,
"height": 2048,
"is_silhouette": false
}
}
}