如何使用FB.api检查用户是否已经喜欢某个页面?

时间:2015-09-16 06:51:03

标签: facebook facebook-graph-api facebook-like facebook-page fbml

我使用下面的代码检查用户是否已经喜欢该页面。

window.fbAsyncInit = function () {
               FB.init({
                appId: 'XXXXXXXXXXX', // App ID
                channelUrl: '//' + window.location.hostname + '/channel', // Channel File
                status: true, // check login status
                cookie: true, // enable cookies to allow the server to access the session
                oauth: true,
                xfbml: true  // parse XFBML
            });

FB.getLoginStatus(function (response) {
      if (response && response.authResponse) {
         getAPIResponse();
      }
      else {
          FB.login(function (response) {
              if (response.authResponse) {
                   getAPIResponse();
              }
              else {
                document.getElementById('MainView').style.display = 'none';
                   }
          });
                }
            });
};

// Load the SDK asynchronously
   (function (d) {
      var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
            if (d.getElementById(id)) { return; }
            js = d.createElement('script'); js.id = id; js.async = true;
            js.src = "//connect.facebook.net/en_US/all.js";
            ref.parentNode.insertBefore(js, ref);
    } (document));

 function getAPIResponse() {
         FB.api("me/likes/XXXXXXXXXXXXX", function (response) {
                if (response.data.length == 1) {
                    document.getElementById('MainView').style.display = 'block';
                } else {
                    document.getElementById('MainView').style.display = 'none';
                    alert("Like our Page to show Calendar");
                }
            });
  }

以上代码以前工作正常。但现在response.data.length总是返回零。如何解决上述问题?

1 个答案:

答案 0 :(得分:2)

好像您没有请求使用类似信息所必需的user_likes权限。

此外,从您的代码示例中,您似乎是“喜欢门”的内容,这是Facebook不允许的,因此可能不允许您通过登录审核,这是使用user_likes所必需的