Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I got stuck how to get for instance the names of all friends. Below is my user class:

public static class FacebookUser implements User {
        @SerializedName("first_name")
        private String firstName;
        @SerializedName("last_name")
        private String lastName;
        private String username;
        private String id;
        private String link;
        private String email;
        private String token;
        private String tokenSecret;
        private String birthday;
        private List<User> friends;

        public String getBirthday() {
            return birthday;
        }

        public String getToken() {
            return token;
        }

        public String getTokenSecret() {
            return tokenSecret;
        }

        public String getName() {
            return firstName + " " + lastName;
        }

        public String getScreenName() {
            return username;
        }

        public String getPictureUrl() {
            return "https://graph.facebook.com/" + id + "/picture";
        }

        public String getId() {
            return id;
        }

        public String getPublicProfileUrl() {
            return link;
        }

        public String getService() {
            return "facebook";
        }

        public String getEmail() {
            return email;
        }

        public  List<User> getFriends() {
            return friends;
        }

I get *read_friends* and *user_birthday* permissions. I can get a user's birthday but the friendlist returns null. I think the reason is I am not doing a correct parsing from json. Below is how i do that:

protected User getUser() {
        OAuthRequest request = new OAuthRequest(Verb.GET, getJsonDataUrl());
        service.signRequest(accessToken, request);
        Response response = request.send();

        Gson gson = new Gson();
        User user = gson.fromJson(response.getBody(), getUserClass());

        // TODO set the token/secret here?
        try {
            Field tokenField = user.getClass().getDeclaredField("token");
            if (tokenField != null) {
                tokenField.setAccessible(true);
                tokenField.set(user, accessToken.getToken());
            }

            Field tokenSecretField = user.getClass().getDeclaredField(
                    "tokenSecret");
            if (tokenSecretField != null) {
                tokenSecretField.setAccessible(true);
                tokenSecretField.set(user, accessToken.getSecret());
            }
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        return user;
    }

I will be glad if someone can help me. Thanks.

share|improve this question
By the way the above code is the source code of oauth jar prepared for Vaadin, I just try to edit it to get friends' information. – Kutay Etçi Feb 10 at 14:32
how do you obtain accessToken ? – ogzd Feb 10 at 21:05
i get it via parameter handler – Kutay Etçi Feb 10 at 21:17
and how do you add these read_friends and user_birthday permissions? – ogzd Feb 10 at 21:23
getJsonDataUrl() what does this method do? – ogzd Feb 10 at 21:25
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.