1

ユーザーの友達の写真と名前を表示したいのですが、うまくいき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()メソッドを見つけることができません。

4

1 に答える 1

1

これを使用するだけの方法は必要ありません

URL url= new URL("https://graph.facebook.com/<your friends id here>/picture?type=normal");
url.openStream
于 2012-12-15T03:10:13.393 に答える