gpt4 book ai didi

java - 使用RestFB获取用户好友图片的方法?

转载 作者:太空宇宙 更新时间:2023-11-04 08:10:17 25 4
gpt4 key购买 nike

我想显示用户好友的图片和姓名,但是getPicture()方法似乎不起作用。

谁能告诉我用什么方法来获取用户好友的照片?

我的代码是

Connection<User> myFriends = facebookClient.fetchConnection("me/friends", User.class, Parameter.with("fields", "id,name,picture"));

// Fetching user connections
List<User> friendsList = myFriends.getData();

for (User userz : friendsList) {
// System.out.println(userz.getPicture() + " : " + userz.getName());
response.getWriter().println(userz.getId() + " : " + userz.getName()+" : " + userz.getPicture());

NetBeans 找不到 getPicture() 方法。

最佳答案

不需要任何方法就用这个

URL url= new URL("https://graph.facebook.com/<your friends id here>/picture?type=normal");
url.openStream

关于java - 使用RestFB获取用户好友图片的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11345797/

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