I'm using android-simple-facebook lib to make login in facebook and get some user data.
In this case the problem that I'm facing is that I can't get the user's birthdate data.
I've set the permissions to the SimpleFacebookConfiguration
object
private Permission[] permissions = new Permission[]{
Permission.EMAIL,
Permission.USER_BIRTHDAY,
Permission.PUBLIC_PROFILE,
Permission.PUBLISH_ACTION
};
and this profile's permissions to get the data
Profile.Properties properties = new Profile.Properties.Builder()
.add(Profile.Properties.ID)
.add(Profile.Properties.FIRST_NAME)
.add(Profile.Properties.LAST_NAME)
.add(Profile.Properties.BIRTHDAY)
.add(Profile.Properties.AGE_RANGE)
.add(Profile.Properties.EMAIL)
.add(Profile.Properties.GENDER)
.build();
But I can't get the data from any of them. Any idea?
To request for new permission