2

我是 facebook API 的新手,我有一些与 facebook 身份验证相关的问题。我创建了一个应用程序并编辑了域和 url。

网站 域名 giftme.web44.net 网站 URL http://www.giftme.web44.net/

我在我的网站网页上使用了以下内容:

<div id="fb-root"></div>
  <script>
    window.fbAsyncInit = function() {
      FB.init({
        appId      : '3347207XXXXXXXX', // App ID (I've replaced for security reasons)
        channelUrl : 'http://giftme.web44.net/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
      });
      // Additional initialization code here
    };
    // 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>

我只用这个创建了页面“channel.html”:

<script src="//connect.facebook.net/en_US/all.js"></script>

最后我使用了登录按钮:

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

我在做什么错?我不断收到此错误:

API 错误代码:191 API 错误描述:指定的 URL 不属于应用程序错误消息:无效的 redirect_uri:一个 URL 通知 não é permitida pela configuração do aplicativo。

4

2 回答 2

1

http://www.giftme.web44.net/不等于http://giftme.web44.net/

于 2012-06-26T16:57:52.113 回答
0

redirect_url 必须包含应用程序属性中定义的站点 URL 或画布 URL。

一个例子是:

https://api.facebook.com/method/admin.setAppProperties?
  access_token=CURRENTTOKEN&
  properties={'post_authorize_redirect_url':'http://giftme.web44.net/channel.html/'}

错误代码 191
FB 应用程序属性

于 2012-06-26T17:03:55.627 回答