FACEBOOK SDK v4 is returning blank email adress

后端 未结 1 564
隐瞒了意图╮
隐瞒了意图╮ 2021-01-16 15:35

I\'m using facebook sdk v4 and i can\'t seem to get the EMAIL ADDRESS. Here is my code. I have searched each and every link on internet and tried every thing. Also tried dif

相关标签:
1条回答
  • 2021-01-16 16:24

    Have a look at my answer here:

    • How to get user email and birthday from Facebook API Version v2.4

    You need to specify each field you want returned from the Graph API starting with v2.4, e.g.

    $request = new FacebookRequest($sess,'GET','/me?fields=id,name,email');
    

    It's all in the Facebook docs.

    0 讨论(0)
提交回复
热议问题