Facebook , How to get phone number after login with facebook sdk?

12,375

There is no way to get the phone number, those phone permissions do not exist.

There are other threads about this already, for example: Facebook API, Phone Numbers

Share:
12,375
Rana
Author by

Rana

Updated on June 14, 2022

Comments

  • Rana
    Rana almost 2 years

    I have integrated FB sdk for customer login and not able to get phone number in response. Here is my code

    FB.api('/me',
        {fields: "id,email,first_name,gender,name,last_name,token_for_business"},
          function(response) {
    
        });
    

    With that above code, I am getting all information expect phone number. I have passed extra parameter mobile_phone then getting undefined response. Here is code

    FB.api('/me',
        {fields: "id,email,first_name,gender,name,last_name,token_for_business,mobile_phone"},
          function(response) {
          console.log(response.mobile_phone);
        }); 
    

    I have tried with parameter "user_mobile_phone" also still getting undefined response only

    Please help me to resolve this, thanks in advance.

  • Pramod Kharade
    Pramod Kharade over 6 years
    Can we get explicitly passing phone number parameter in request?
  • andyrandy
    andyrandy over 6 years
    please read my answer again: "there is no way". there´s not even a permission for the phone number.
  • Rana
    Rana over 6 years
    Thanks luschn , Suppose i have registered FB with phone number then also we can't get phone number information ?
  • SkyWalker
    SkyWalker almost 5 years
    LOL :D :D :D there is NO WAY and people keep asking :D As of today there still is NO WAY developers.facebook.com/docs/facebook-login/…