如何在我的 iPhone 应用程序中通过 fbconnect 获取用户的 Facebook 个人资料图片?
如何通过 fbconnect 获取用户的 Facebook 个人资料图片我的应用程序 iPhone?
Possible Duplicate:
Problem getting Facebook pictures via iOS
How to get user's facebook profile pic via fbconnect in my app iPhone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试通过 http://developers.facebook.com/docs/api 进行更深入的了解。以下是用户图片的链接:
http://graph.facebook.com/000000000/picture
其中
000000000
是登录用户的 ID。更新,作者:Michael Gaylord:
您还可以将类型附加到请求中以获取不同大小的图像。因此,您的请求将类似于: http://graph.facebook.com/00000000/ picture?type=large 用于大图像。其他选项有小型、普通和方形。
Try look deeper through http://developers.facebook.com/docs/api. Here is a link to userpic:
http://graph.facebook.com/000000000/picture
Where
000000000
is an id of user logged.UPDATE by Michael Gaylord:
You can also append the type to the request to get different sized images. So your request will look something like: http://graph.facebook.com/00000000/picture?type=large for a large image. Other options are small, normal and square.
我认为最简单的方法是这样的:
I think the most simple way is this:
这里使用这些委托方法来获取用户的图片。
当您创建会话时,您将获得名为 didLogin 的委托方法
调用方法 requestWithDelegate 后,如果成功,您将在此方法中获得响应
您将获得可以在 GDB 中看到的 json 格式的所有详细信息
Here use these delegate methods to get the picture of user.
When you create session you will get the delegate method called didLogin
after calling the method requestWithDelegate you'll get response in this method if succeed
You'll get all the details in json format you can see in GDB