测试发布到Facebook页面



我正在开发我的第一个"Facebook应用程序"。我想要的是将我的Java应用程序中的帖子发送到Facebook页面。

我遵循了Facebook开发者指南。现在我有这个应用程序和一些测试用户。有了测试用户,我想试着把东西发布到我的tespage上。

因此,我使用Postman创建了一个POST请求,在(https://developers.facebook.com/docs/pages/publishing)。

作为回应,我得到

{
"error": {
"message": "(#200) If posting to a group, requires app being installed in the group, and \n          either publish_to_groups permission with user token, or both manage_pages \n          and publish_pages permission with page token; If posting to a page, \n          requires both manage_pages and publish_pages as an admin with \n          sufficient administrative permission",
"type": "OAuthException",
"code": 200,
"fbtrace_id": "AF_g89q8Af14WLdij2_2mkW"
}
}

开发人员网站说,我需要对该应用程序进行审查才能获得此权限。但是,当我不能在我的页面上发帖时,我应该如何制作应用程序的屏幕截图?

你知道如何解决这个问题吗?

提前感谢多米尼克

As@CBroe提到不再允许以用户身份发布到页面。

我的错是,我以为我使用的access_token是一个页面访问令牌。但事实并非如此。在生成页面访问令牌并使用它之后,一切都很好。

最新更新