-1

我正在尝试 Facebook api。为此,我创建了一个应用程序密钥。并写了一个小程序。安装 apache 并执行该 HTML 文件。facebook 徽标出现了,但我无法从该程序中获取任何值。如果我在 facebook 控制台上执行相同的程序,它可以工作并给出值。

是否不能在连接到互联网但在私有 IP 的本地计算机上使用 facebook api?我不想直接在我的服务器上工作。想在我的机器上离线测试一些东西而不是部署代码..这不可能>

有没有更好的方法在 facebook apis 中使用 java API 打印 frdslist

 <html>
<head>
  <title>My  Test Facebook Login Page</title>
</head>
<body>

  <div id="fb-root"></div>
  <script>
    window.fbAsyncInit = function() {
      FB.init({
        appId      : 'xxxxx', // App ID
        channelUrl : 'sample.com/backup', // Channel File
        status     : true, // check login status
        cookie     : true, // enable cookies to allow the server to access the session
        xfbml      : true  // parse XFBML
      });
    };                  
    // 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));


   FB.api('/me', function(response) {
alert("Name: "+ response.name + "\nFirst name: "+ response.first_name + "ID: "+response.id);
var img_link = "http://graph.facebook.com/"+response.id+"/picture"

});

     FB.api('/me/friends', { fields: 'name,id,location,birthday' }, function(result) {

})


  </script>


   <div class="fb-login-button" >Login with Facebook</div>


</body>

4

1 回答 1

0

添加“read_friendlist”权限。

于 2012-07-18T08:49:19.277 回答