How do i get someones profile picture to display back to them?

走远了吗. 提交于 2019-12-06 00:40:50
Coulton

Calling on the Graph API

http://graph.facebook.com/[id]/picture

The following will give you different sizes

http://graph.facebook.com/[id]/picture?type=square

http://graph.facebook.com/[id]/picture?type=normal

http://graph.facebook.com/[id]/picture?type=large

So you can just put these URLs straight in an <img> tag

EG: <img src="http://graph.facebook.com/4/picture?type=square" />

See: http://developers.facebook.com/docs/reference/api/#pictures

These are in the public domain, so there is no need for any authentication.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!