在Facebook页面上获取喜欢的数量

时间:2018-02-27 10:17:48

标签: javascript sdk token

我想在facebook页面上使用javascript SDK获取相似数量。我正在使用......

FB.api(
    "/pageID/likes",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);

返回: {message:"要求此资源需要访问令牌。",键入:" OAuthException",代码:104,...}

如何获取访问令牌?在此先感谢!

1 个答案:

答案 0 :(得分:1)

This link可以帮到你。当您使用API​​时,您总是需要允许令牌才能请求它。 Facebook have a platform登录并获取令牌。 Facebook有一个full documentation here