I am new and Please be patient If I am wrong. This below code is from RESTFB to fetch informations from profile. How should I extract name, id and pricture seperately.
Connection<User> myFriends = facebookClient.fetchConnection("me/friends", User.class,Parameter.with("Fields", "name,id,picture"));
Connection<Post> myFeed = facebookClient.fetchConnection("me/feed", Post.class);
out.println("Count of my friends: " + myFriends.getData().size());
