我最近在 facebook 上做了一个测试应用程序,该应用程序是一个网站应用程序,我只需要用户登录,这样我就可以使用 php sdk 从应用程序内访问用户信息,当我第一次测试它时,登录过程完美无缺,问题是,当我到达测试页面时,它完全是空白的,而我希望它回显:HELLO NAME,其中“NAME”是我的名字,这是代码,我不会发布应用程序 ID、秘密等,因为这些肯定有效,因为登录过程很好:
$app_id = "xxxxxxxxxxxx";
$app_secret = "xxxxxxxxxxxxxxxxxxxxxx";
$my_url = "http://www.anithro.com/anithroproject/login.php/";
session_start();
$code = $_REQUEST["code"];
if(empty($code)) {
// Redirect to Login Dialog
$_SESSION['state'] = md5(uniqid(rand(), TRUE)); // CSRF protection
$dialog_url = "https://www.facebook.com/dialog/oauth?client_id="
. $app_id . "&redirect_uri=" . urlencode($my_url) . "&state="
. $_SESSION['state'] . "&scope=user_birthday,read_stream";
echo("<script> top.location.href='" . $dialog_url . "'</script>");
if($_SESSION['state'] && ($_SESSION['state'] === $_REQUEST['state'])) {
// state variable matches
$token_url = "https://graph.facebook.com/oauth/access_token?"
. "client_id=" . $app_id . "&redirect_uri=" . urlencode($my_url)
. "&client_secret=" . $app_secret . "&code=" . $code;
$response = file_get_contents($token_url);
$params = null;
parse_str($response, $params);
$_SESSION['access_token'] = $params['access_token'];
$graph_url = "https://graph.facebook.com/me?access_token="
. $_SESSION['access_token'];
$user = json_decode(file_get_contents($graph_url));
echo("Hello " . $user->name);
}
else {
echo("The state does not match. You may be a victim of CSRF.");
}
}
我已经完全按照代码进行操作,为什么我不能访问用户变量?提前谢谢。你可以尝试访问我给出的 url 看看,它只是空白。