douchui1488 2011-06-23 06:14
浏览 1223
已采纳

如何从Facebook登录获取用户详细信息?

I am using facebook PHP SDK. I need the user to login to my site using their facebook account and I need to store their email, first name and last name in my database. I am using this code to login the user

 $loginUrl   = $facebook->getLoginUrl(
        array(
            'scope'         => 'user_photos,user_videos,email,offline_access,publish_stream,user_birthday,user_location,user_work_history,user_about_me,user_hometown',
            'redirect_uri'  => $fbconfig['baseurl']
        )
);

My problem is how can I retrieve the information after the user login and rediret back to my site.

  • 写回答

3条回答 默认 最新

  • douzheren3349 2011-06-23 07:07
    关注

    Something along the lines of..

    $user = $facebook->getUser();
    

    OR

    $user = $facebook->api('/me');
    

    This will return an array that includes all the public information that FB generally gives out. (i.e.- name, birthday, email, etc.)

    Now I'm sure you can access the user's email as such,

    $userEmail = $user['email'];
    

    To check out everything it returns specifically,

    print_r($user);
    

    For more example code, check out Facebook's PHP SDK

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!