I am using this following block which is mentioned in Facebook Developer. But when my App callbacks from Browser then it
You use this simple block with your expected requirements
if ([FBSDKAccessToken currentAccessToken])
{
[[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:nil]
startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id user, NSError *error)
{
if (!error)
{
// NSDictionary *dictUser = (NSDictionary *)user;
// This dictionary contain user Information which is possible to get from Facebook account.
}
}];
}