我正在尝试使用开放图表中的访问令牌获取特定facebook用户的帖子(Feed)。 用户是我的朋友,她通过口头承诺同意了这一行动。
我有令牌:
https://graph.facebook.com/oauth/access_token?client_id=xxxxx&client_secret=xxxxx&grant_type=client_credentials
但我看不到所有帖子(只是公开状态信息)。
Request => https://graph.facebook.com/100001958850690/posts?access_token=xxxxx&q=facebook
Response => {
"error": {
"message": "(#606) actor_id (100001958850690) must be a connection of the viewer",
"type": "OAuthException",
"code": 606
}
}
有没有办法可以阅读特定/约定用户的公开帖子?