facebook Graph explorer 当我使用2.10版本的facebook API时,我可以得到喜欢的帖子。当我使用2.11版本的API时,我无法做到这一点。我为访问令牌设置了所有可能的权限,但它没有帮助。我看了2.11版本的更新日志,但没有关于这个URL的文字。什么可以解决这个问题?我怎么能得到这个职位的喜欢?
try {
$response = $this->fb->get('/' . $page_id . '?fields=access_token', $this->access_token);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
return;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
return;
}
答案 0 :(得分:1)
我假设您正在尝试App Access令牌。尝试使用相关页面的页面令牌,并且很可能会出现喜欢/反应。查看v2.11的90天弃用,如果您使用页面令牌,用户数据将仅在结果中。
有关令牌的更多信息:
当然,您必须管理页面才能获得页面令牌。