我正在使用 PHP SDK 构建一个 Facebook 应用程序,我想要的只是自动显示登录应用程序窗口(提示用户接受授权的窗口)。
目前我设法显示此窗口,但前提是用户单击链接并且链接位于目标_blank 中。
如果我尝试做一个 header('location:XXX') 什么都没有发生,如果我在 Javascript 中尝试 document.location 就不会再发生了。
我的代码:
$facebook = new Facebook(array(
'appId' => $appid,
'secret' => $appsecret,
'cookie' => true,
));
// Get User ID
$fb_user = $facebook->getUser();
if ($fb_user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$fb_user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$fb_user = null;
}
}
// Login or logout url will be needed depending on current user state.
if ($fb_user) {
$logoutUrl = $facebook->getLogoutUrl();
} else {
$loginUrl = $facebook->getLoginUrl(
array(
'scope' => 'email,user_birthday'
));
}
// if the user hasn't yet accept the app :
if ($fb_user == 0){
echo "<a href='$loginUrl' target='_blank'>log</a>
}
任何帮助将不胜感激!