尝试使用Graph API发布到页面时的权限问题

时间:2017-01-09 04:18:10

标签: javascript facebook graph permissions

我正试图从我的应用程序发布到Facebook作为我管理的页面。 在身份验证时,已设置manage_pagespublish_pages的权限。

仍然在尝试使用以下代码发布时:

           FB.api(
                  "/"+pageId+"/feed",
                  "POST",
                  {
                      "message": "This is a test message #testing SDK"
                  },
                  function (response) {
                    console.log(response);
                    if (response && !response.error) {
                      console.log(response);
                    }
                  }
              );

它给出以下错误消息:

(#200) The user hasn't authorized the application to perform this action

我尝试使用

检查权限
FB.api(
    "/me/permissions",
    function (response) {
      if (response && !response.error) {
        console.log(response)
      }
    }
);

并确认已授予所有必需的许可。

我在这里做错了什么?

0 个答案:

没有答案