尝试解析来自 facebook 组的帖子时得到 facepy.exception (#200)
Got facepy.exception (#200) when trying to parse posts from facebook group
我正在尝试通过 Python 使用 facepy 与 facebook API 交互来解析来自 facebook 组的帖子。我获得了管理群组帖子的权限,但出现异常 'facepy.exceptions.OAuthError: [200] (#200) Requires either admin with granted managed_group pemissions or member using installed app.' 。但我是那个组的成员。
from facepy import GraphAPI
graph = GraphAPI('<API_Token>')
print(graph.get('944324092265557/feed'))
我的问题是什么以及如何解决它。谢谢
But I am member of that group
仅此还不够,在这种情况下还必须由管理员在群组中安装该应用程序。
https://developers.facebook.com/docs/graph-api/reference/v4.0/group/feed#readperms
https://developers.facebook.com/docs/groups-api#app-installation
我正在尝试通过 Python 使用 facepy 与 facebook API 交互来解析来自 facebook 组的帖子。我获得了管理群组帖子的权限,但出现异常 'facepy.exceptions.OAuthError: [200] (#200) Requires either admin with granted managed_group pemissions or member using installed app.' 。但我是那个组的成员。
from facepy import GraphAPI
graph = GraphAPI('<API_Token>')
print(graph.get('944324092265557/feed'))
我的问题是什么以及如何解决它。谢谢
But I am member of that group
仅此还不够,在这种情况下还必须由管理员在群组中安装该应用程序。
https://developers.facebook.com/docs/graph-api/reference/v4.0/group/feed#readperms
https://developers.facebook.com/docs/groups-api#app-installation