我想在我的网站中集成facebook登录,并希望从用户中提取信息。这是我的代码
<html> <head> <title>My Facebook Login Page </head> <body> <div id="fb-root"> <script src="http://connect.facebook.net/en_US/all.js"> <script> FB.init({ appId:'my app id', cookie:true, status:true, xfbml:true }); </script> <h3>Welcome to my site</h3> <fb:login-button>Login with Facebook</fb:login-button> </body> </html>
以下是我网站的链接click here一切正常,但我的问题是在此之后该怎么做才能使用图形API来使用php提取用户信息。 任何有关示例的帮助将不胜感激。
答案 0 :(得分:2)
$me = $facebook->api('/me');
将包含用户数据<fb:login-button perms="user_birthday"></fb:login-button>