如何在 Android 应用程序中检索用户的 Facebook 头像?
我正在尝试检索当前登录用户的头像图像,以便我可以将其保存在我的服务器上并稍后在我的应用程序中使用它。
我将如何直接获取图像?
I'm trying to retrieve the currently-logged-in user's avatar image so that I can save it on my server and use it later in my application.
How would I go about getting the image directly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:(
用别名或用户 ID 替换 USER_ID...)
将源设置为 https://graph.facebook .com/USER_ID/picture
例如,页面 ID 149926629437 的大图标是:
http://graph.facebook.com/149926629437/picture?type=large
更多信息(指定尺寸等...):
http://developers.facebook.com/docs/reference/api/
部分图片
(我还使用aQuery(android查询)来缓存图像...
aq.id(holder.image).image("https://graph.facebook.com/" + USER_ID + "/picture ?type=normal");
http://code.google.com/p /android-query/
看起来工作正常......
)
Try this:
(replace USER_ID with alias or user ID...)
set source as https://graph.facebook.com/USER_ID/picture
for example large icon of a Page ID 149926629437 is:
http://graph.facebook.com/149926629437/picture?type=large
more info (specify size etc...):
http://developers.facebook.com/docs/reference/api/
part Pictures
(I also userd the aQuery (android query) to cache images...
aq.id( holder.image).image("https://graph.facebook.com/" + USER_ID + "/picture?type=normal");
http://code.google.com/p/android-query/
It seems working fine...
)
关于这一点不能说太多,但你可能想在这里尝试 facebook android sdk -> https://github.com/facebook/facebook-android-sdk 。祝你好运 :)
Can't say much about this, but you might want to try the facebook android sdk here ->https://github.com/facebook/facebook-android-sdk . Good luck :)
如果您想要更高质量的个人资料图片,请尝试:
然后检索
response.picture.data.url
If you want a higher quality profile picture try:
And then retrieve the
response.picture.data.url