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