我有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";
上面注释掉的一行显示了我试图无济于事的另一件事。
有人可以帮忙吗?
答案 0 :(得分:0)
不推荐使用offline_access。
http://developers.facebook.com/roadmap/offline-access-removal/