gpt4 book ai didi

android - 如何在我的 android 应用程序中获取 facebook 个人资料图片?

转载 作者:太空宇宙 更新时间:2023-11-03 11:27:50 25 4
gpt4 key购买 nike

我正在 android 中开发一个应用程序,我必须在其中获取将 Facebook 照片添加到我的应用程序中。

android可以吗?

请帮助我。

感谢和问候,杜奇什·林巴尼

最佳答案

您只需要用户的用户 ID,然后您可以调用这样的函数:

/**
* Function loads the users facebook profile pic
*
* @param userID
*/
public Bitmap getUserPic(String userID) {
String imageURL;
Bitmap bitmap = null;
Log.d(TAG, "Loading Picture");
imageURL = "http://graph.facebook.com/"+userID+"/picture?type=small";
try {
bitmap = BitmapFactory.decodeStream((InputStream)new URL(imageURL).getContent());
} catch (Exception e) {
Log.d("TAG", "Loading Picture FAILED");
e.printStackTrace();
}
return bitmap;
}

您可以更改 imageURL 中的类型以获得不同尺寸的图片。

关于android - 如何在我的 android 应用程序中获取 facebook 个人资料图片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6706977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com