2

我正在尝试获取我所有朋友的所有 ID 以及他们的个人资料图片。我在用着https://graph.facebook.com/me/friends?fields=picture&access_token=[myToken]

我得到这个返回:

{
"data": [
{
"id": "xxx",
"picture": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/xxx_q.jpg"
}

返回的图片 url 是一个非常小的图像。如何获得更大的图像?

4

1 回答 1

2

推荐
根据文档(“图片”部分),可以使用用户ID构建个人资料照片的url

例如,假设用户 id 在 $id 中:

"http://graph.facebook.com/$id/picture?type=square"
"http://graph.facebook.com/$id/picture?type=small"
"http://graph.facebook.com/$id/picture?type=normal"
"http://graph.facebook.com/$id/picture?type=large"

哈克

http://profile.ak.fbcdn.net/hprofile-ak-snc4/xxx_.jpgq _

您可以将q参数替换为sor b :)

于 2012-06-23T06:42:37.770 回答