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.
accessToken? – ogzd Feb 10 at 21:05read_friendsanduser_birthdaypermissions? – ogzd Feb 10 at 21:23getJsonDataUrl()what does this method do? – ogzd Feb 10 at 21:25