简体   繁体   English

Facebook JS SDK未返回任何结果

[英]Facebook JS SDK returns no results

I ran an example copied from: 我运行了一个示例,复制自:

http://developers.facebook.com/docs/reference/javascript/ http://developers.facebook.com/docs/reference/javascript/

http://developers.facebook.com/docs/reference/javascript/FB.api/ http://developers.facebook.com/docs/reference/javascript/FB.api/

(I only changed my APP_ID) (我只更改了APP_ID)

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'MY_ID', // App ID
      channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    FB.api('/platform/posts', { limit: 3 }, function(response) {
  for (var i=0, l=response.length; i<l; i++) {
    var post = response[i];
    if (post.message) {
      alert('Message: ' + post.message);
    } else if (post.attachment && post.attachment.name) {
      alert('Attachment: ' + post.attachment.name);
    }
  }
});
  };

  // 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));
</script>

Nothing shows in the browser. 浏览器中没有任何显示。 There is no JavaScript errors in console (Opera 11). 控制台中没有JavaScript错误(Opera 11)。 Why is it not working? 为什么不起作用?

I had the same issue and realized that the example is not parsing the response correctly. 我遇到了同样的问题,并意识到该示例无法正确解析响应。 The object has a property data which is actually the Array to be parsed. 该对象具有一个属性数据 ,该数据实际上是要解析的数组。

Another point is that you need a token to do this operation. 另一点是您需要令牌才能执行此操作。 So your code should be: 因此,您的代码应为:

<div id="fb-root"></div>
<script>
    var fbToken; // Highly recommended to make it global
    window.fbAsyncInit = function()
    {
        FB.init({
            appId      : 'MY_ID', // App ID
            channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File
            status     : true, // check login status
            cookie     : true, // enable cookies to allow the server to access the session
            xfbml      : true  // parse XFBML
        });

        FB.login(function(response)
        {
            if (response.authResponse)
            {
                fbToken = response.authResponse.accessToken;  // Save it for another requests
                FB.api('/platform/posts', {limit:3}, function(response){
                    for (var i=0, l=response.data.length; i<l; i++)
                    {
                        var post = response.data[i];
                        if (post.message)
                        {
                          alert('Message: ' + post.message);
                        } else if (post.attachment && post.attachment.name)
                        {
                          alert('Attachment: ' + post.attachment.name);
                        }
                      }
                });
            } else {
                // User did not accept oAuth
            }
        });
    }
    // 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));
</script>

It looks like you're not logged in. You need to authenticate the user to get an oauth token in place first before you can run this part of the code: 看来您尚未登录。您需要先验证用户身份,然后才能获得oauth令牌,然后才能运行代码的以下部分:

     FB.api('/platform/posts', { limit: 3 }, function(response) {
      for (var i=0, l=response.length; i<l; i++) {
        var post = response[i];
        if (post.message) {
          alert('Message: ' + post.message);
        } else if (post.attachment && post.attachment.name) {
          alert('Attachment: ' + post.attachment.name);
        }
      }
    });

See: http://developers.facebook.com/docs/reference/javascript/FB.login/ 请参阅: http : //developers.facebook.com/docs/reference/javascript/FB.login/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM