I am using facebook sdk v 2.3 and try to find friends birthdate.using query @"me/friends" we can find only that friends who using same app. but i need to find all friends with their details with birthday. I am using @"me/taggable_friends" this query gives the detail of friends without birthday. So Give me the permission name or query any other way to get all friends with birthday.
I am using code like..
if ([FBSDKAccessToken currentAccessToken]) {
[[[FBSDKGraphRequest alloc] initWithGraphPath:@"me/taggable_friends?limit=10" parameters:nil]
startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id strong textresult, NSError *error) {
if (!error) {
NSLog(@"fetched user:%@", result);
}
}];
}
taggable_friends
is for tagging friends only, you are not supposed to use it for anything else.That being said, friend permissions are gone, it is not possible at all to get the birthday of a friend. The only way to get the birthday of a friend is by authorizing that friend too, with the
user_birthday
permission.Btw, you also need to go through Login Review for
user_birthday
. And you would need to go through a review process withtaggable_friends
too, it will never get approved for anything else than tagging.