0

我有offline_access权限manage_pages,但我不断收到各种 OAuth 错误 - 使用下面的代码我得到

致命错误:未捕获的 OAuthException:验证访问令牌时出错:会话已失效,因为用户已更改密码。

我将用户访问令牌和页面访问令牌都保存在数据库中,然后尝试使用它来更新用户离线时管理的页面。我似乎无法完成这项工作:

$access_token = User token got when user was logged in;
$news_token = Page token got when user was logged in;

// $accounts_url = "https://graph.facebook.com/me/accounts?" . $access_token;

            $page_info = $facebook->api("/$news_page?fields=access_token");
                     $args = array(
                                  'access_token'  => $news_token,
                                  'message'       => $u,
                                  'link'          => $news_url,
                                  'description'   => $u,
                                  'name'          => $news_title,
                                  'picture'       => $image
                                  );

                  $post_id = $facebook->api("/$page_id/feed","post",$args);
                  echo $news_source."(Offline): ".$u."<br />\n";

上面注释掉的行显示了我尝试无济于事的另一件事。

有人可以帮忙吗?

4

1 回答 1

0

offline_access 已弃用。

http://developers.facebook.com/roadmap/offline-access-removal/

于 2012-05-14T09:33:18.103 回答