如何在 Android 应用程序中检索用户的 Facebook 头像?

发布于 2024-10-21 07:25:42 字数 77 浏览 2 评论 0原文

我正在尝试检索当前登录用户的头像图像,以便我可以将其保存在我的服务器上并稍后在我的应用程序中使用它。

我将如何直接获取图像?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

归属感 2024-10-28 07:25:42

试试这个:(

用别名或用户 ID 替换 USER_ID...)

将源设置为 https://graph.facebook .com/USER_ID/picture

例如,页面 ID 149926629437 的大图标是:
http://graph.facebook.com/149926629437/picture?type=large

<img src="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

<img src="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...
)

无力看清 2024-10-28 07:25:42

关于这一点不能说太多,但你可能想在这里尝试 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 :)

我早已燃尽 2024-10-28 07:25:42

如果您想要更高质量的个人资料图片,请尝试:

https://graph.facebook.com/{ID}?fields=picture.height(2048)

然后检索 response.picture.data.url

If you want a higher quality profile picture try:

https://graph.facebook.com/{ID}?fields=picture.height(2048)

And then retrieve the response.picture.data.url

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文