我有一个 facebook iframe 应用程序可以正确登录并授权该应用程序,但 getUser() 仅适用于第一页。只要用户单击 iframe 中新页面的链接,getUser() 就会返回 0。
奇怪的是,同样的代码适用于另一个应用程序......我做了所有我想要的点击,getUser() 返回一个有效的 ID。
不起作用的应用程序:https ://apps.facebook.com/celestial_glory/
那个(相同的代码库):https ://apps.facebook.com/upprisingstlouis/
这是我正在使用的代码:
require_once ('fb/facebook.php');
// snip... set $app_id, $secret, and $canvas_page
// first, try normal facebook getUser(). If that works, awesome.
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $secret,
));
$signed_request = $_REQUEST['signed_request'];
// Get User ID
$user = $facebook->getUser();
if ($user != '0') return 'fb=' . $user; // works once
// getUser() didn't work. Try oAuth. Maybe user needs to log in or
// authorize the game?
$auth_url = 'http://www.facebook.com/dialog/oauth?client_id='
. $app_id . '&redirect_uri=' . urlencode($canvas_page);
list($encoded_sig, $payload) = explode('.', $signed_request, 2);
$data = json_decode(base64_decode(strtr($payload, '-_', '+/')), true);
if (empty($data["user_id"])) {
echo '<a target="_top" href="' . $auth_url . '">Login to Facebook</a>';
exit;
// normally we would auto-redirect, but with a uid of 0, this just auto-redirects
// echo("<script> top.location.href='" . $auth_url . "'</script>");
} else {
return 'fb=' . $data['user_id'];
}
有任何想法吗?我对应用程序 ID 和机密以及画布页面进行了三次检查。如果这些是错误的,我希望没有任何页面,即使是第一个页面,也不会起作用。