0

我在 php 中有这段代码,以前可以工作,但现在不行了,即使这听起来像个谎言,我什么也没碰!

$facebook = new Facebook(array(
  'appId'  => 'myApp',
  'secret' => 'mySecret',
  'cookie' => true ,
  'scope' => 'read_stream','manage_pages'
));


$user = $facebook->getUser();

if ($user!=0) {
   doStaff;
}else{
   $login_url = $facebook->getLoginUrl($params = array('scope' => "read_stream"));
   echo ("<script> top.location.href='".$login_url."'</script>");
}

现在的问题是在无限循环中获取堆栈。

任何帮助将不胜感激。

4

1 回答 1

0

You are probably using the deprecated Facebook PHP SDK. Try to get the latest Facebook PHP SDK

于 2012-11-30T08:51:35.903 回答