0

我很想使用 FB.api 发布状态。但是收到类似“Facebook 应用程序中的应用程序配置错误不允许给定 URL”之类的错误。我在 Google 中搜索过这个。我知道重定向 uri 应该与 Facebook 应用程序的网站 url 相同。但是在我的代码中,我没有使用重定向 uri。这是我的代码

   <html>
  <body>
 <div id="fb-root"></div>
      <script>
    window.fbAsyncInit = function() {
     FB.init({
    appId      : 'ID', // App ID
  channelUrl : 'http://localhost/APP/chnel.php', // Channel File
  status     : true, // check login status
  cookie     : true, 
  xfbml      : true  // parse XFBML
   });

 // Additional initialization code here



    FB.login(function(response) {
     if (response.authResponse) {
    console.log('Welcome!  Fetching your information.... ');
      FB.api('/me', function(response) {
     console.log('Good to see you, ' + response.name + '.');
      });
        } else {
 console.log('User cancelled login or did not fully authorize.');
         }
      });
     };

      // 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 = "http://connect.facebook.net/en_US/all.js";
       ref.parentNode.insertBefore(js, ref);
        }(document));
    </script>
  </body>
  </html>

那么我该如何解决这个问题。我只在 localhost 中开发应用程序

4

0 回答 0