测试发布到 Facebook 页面

Test Posting to Facebook Pages

我正在开发我的第一个 "Facebook-App"。我想要的是将 postings 从我的 Java 应用程序发送到 Facebook 页面。

我遵循了 Facebook 开发人员指南。现在我有应用程序和一些测试用户。对于 testuser,我想尝试 posting 东西到我的 tespage。

所以我使用 Postman 创建了一个 POST-Request,描述于 (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"
  }
}

Dev-Site 说我需要对应用进行审核才能获得此权限。但是,当我无法 post 到我的页面时,我应该如何制作应用程序的截屏视频?

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

提前致谢 多米尼克

正如@CBroe 提到的那样,不再允许以用户身份向页面发帖。

我的错是,我认为我使用的 access_token 是页面访问令牌。但事实并非如此。生成页面访问令牌并使用它后一切正常。