Facebook 个人资料图片是公开的。
例如https://graph.facebook.com/oleg.dats/picture它是方形的,但要小
要获得更大的图片https://graph.facebook.com/oleg.dats/picture?type=large但是这个不是正方形。
有没有办法获得方形头像(200px/200px)?
问问题
26360 次
2 回答
57
您将需要自己发布处理。尺寸是
- 正方形 (50x50)
- 小(50 像素宽,可变高度)
- 正常(100 像素宽,可变高度),和
- 大(大约 200 像素宽,可变高度)
自 2012 年 8 月 22 日星期三宣布,
width
您可以通过 Graph API 使用和查询备用尺寸height
,例如
https://graph.facebook.com/1207059/picture?width=121&height=100
所以在你的情况下
https://graph.facebook.com/oleg.dats/picture?width=200&height=200
或者在 FQL 中
SELECT url, real_width, real_height FROM profile_pic WHERE id=100000896260238 AND width=200 AND height=200
[来源 - http://developers.facebook.com/blog/post/2012/08/22/platform-updates--operation-developer-love/ ]
于 2012-07-31T15:50:49.743 回答
6
您可以使用它来获取任何大小的个人资料图片:
https://graph.facebook.com/digitizor/picture?width=700&height=200
这显示了 700 像素 x 200 像素的 facebook.com/digitizor 的个人资料图片
根据您的要求更改尺寸和 Facebook 个人资料名称
于 2012-09-15T17:05:17.887 回答