如何让某人的个人资料图片显示给他们?
我如何才能将某人的个人资料图片显示给我。我已经获得使用用户图片等的权限,我只是不知道如何使用他们的个人资料图片并将其显示回给他们。
任何帮助都会很棒
How do i get someones profile picture to diplay back to me. I have already gotten permissions to use the user's pictures etc i just don't know how to use their profile picture and display it back to them.
Any help would be awesome
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用 Graph API
http://graph.facebook.com/[id]/picture
以下将为您提供不同的尺寸
,因此您可以将这些 URL 直接放入
标记
EG 中:
参见:
http://developers.facebook.com/docs/reference/api/#pictures
这些都是公共领域的,因此不需要任何身份验证。
Calling on the Graph API
http://graph.facebook.com/[id]/picture
The following will give you different sizes
So you can just put these URLs straight in an
<img>
tagEG:
<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.