how to fetch user phone number using loginViewFetchedUserInfo?

facebook, facebook-login, ios, iphone, xcode

Solution

No its not possible to get phone number because below link says that there is no phone number permission.

Click here.

Problem

I am using FBLoginView to login authentication and get user info in my iOS Application. I got all the information of FB user using FBLoginView and its below delegate method ``` -(void)loginViewFetchedUserInfo:(FBLoginView *)loginView user:(id<FBGraphUser>)user{ } Response is :- bio = "some bio"; email = "email address"; "first_name" = My first name; gender = male; id = my id; "last_name" = my last name; link = "face book url link"; locale = "en_US"; name = "my full name"; timezone = "5.5"; "updated_time" = "2014-05-29T12:59:48+0000"; verified = 1; ``` now problem is that I am not getting the user's phone number only. any help ? thanks in advance.

Original source