1

Web アプリに 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' は絶対 URL でなければなりません。」

これはなぜですか?

4

0 に答える 0