redirect_url应该是一个绝对的URL

时间:2012-07-05 20:36:26

标签: facebook registration

我在我的网络应用程序上安装FB reg(并在本地测试)。

我提出这个:

<div class="auth">
    <script language="javascript">
$(function(){
    var root = $('#fb-root');
    if ((!root) || (!root.length)){
        $('body').append('<div id="fb-root"></div>');
    }
    window.fbAsyncInit = function() {
        console.log('fbAsyncInit');
        FB.init({
            appId      : '111...', // App ID
            channelUrl : 'http://www.wonderlandlabs.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
        });
    };
    // 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));
})

...并收到此错误:

“'redirect_uri'应该是绝对的网址。”

为什么会这样?

0 个答案:

没有答案