3

我有问题。$user_profile = $facebook->api('/me'); 有时它有效,有时则无效。

在 10 例中有 8 例它正在工作,突然我在 $user_profile 中有一个空字符串。魔法在哪里?

(我实现了最新的 php SDK)

// FB lib
require_once './libs/facebook.php';
error_reporting(0);

// connect
$facebook = new Facebook(array(  
    'appId'  => 'xxx',  
    'secret' => 'xxx',  
    'cookie' => true
)); 

$user = $facebook->getUser();
$fb_id = $facebook->getUser();

if ($user) {
    try {
        $_SESSION['user'] = $user_profile = $facebook->api('/me');
        $_SESSION['fb_id'] = $fb_id;
} catch (FacebookApiException $e) {
    error_log($e);
    $user = NULL;
  }
}

if ($user == NULL) {
   $loginUrl = $facebook->getLoginUrl(
       array(
        'display' => 'popup',
        'scope' => 'publish_stream, user_likes',
        'redirect_url' => 'https://xxxx.cz/xxxx/canvas/index.php'
    )
);    
} else {  
     $_SESSION['fb_id'] = $fb_id;
     header("Location: https://xxxx.cz/xxxx/xxxx.php");
}
4

1 回答 1

1

魔力来自 Facebook,他们的平台似乎不稳定,您依赖于他们的服务器,这些服务器可能无法始终正常工作。

我知道您期望有一个解决方案,但实际上只有一个答案来解释它为什么不起作用。

于 2013-04-23T08:32:26.070 回答