2

localhost:8080 このエラーが発生したサイトの実行時に現在実行されている Web アプリケーションに Facebook キャンバスを統合しようとしています。

API Error Code: 191
API Error Description: The specified URL is not owned by the application
Error Message: redirect_uri is not owned by the application.

そして、ここに私のアプリの設定があります。

ここに画像の説明を入力

ドキュメントに従っているだけで、このエラーが表示されました。

window.fbAsyncInit = function() {
                            FB
                                    .init({
                                        appId : 'myappIdHere', // App ID
                                        channelUrl : 'https://apps.facebook.com/mytestapp/', // Channel File
                                        status : true, // check login status
                                        cookie : true, // enable cookies to allow the server to access the session
                                        xfbml : true
                                    // parse XFBML
                                    });
                            FB.ui({
                                method : 'feed'
                            });
                        };
                        // Load the SDK Asynchronously
                        (function(d, s, id) {
                            var js, fjs = d.getElementsByTagName(s)[0];
                            if (d.getElementById(id)) {
                                return;
                            }
                            js = d.createElement(s);
                            js.id = id;
                            js.src = "//connect.facebook.net/en_US/all.js";
                            fjs.parentNode.insertBefore(js, fjs);
                        }(document, 'script', 'facebook-jssdk'));
4

1 に答える 1

5

「キャンバス URL」に配置する必要がある URL は、おそらく localhost:8080 です (アプリの URL は「名前空間」によって決定され、常にhttp://apps.facebook.com/namespaceになります (これは一意である必要があります)。あなたのアプリ。)

http://developers.facebook.com/docs/reference/dialogs/feed/のリダイレクト URI を指定する必要があります。

<script> 
  FB.init({appId: "YOUR_APP_ID", status: true, cookie: true});

  function postToFeed() {

    // calling the API ...
    var obj = {
      method: 'feed',
      redirect_uri: 'https://apps.facebook.com/mytestapp/',
      link: 'https://apps.facebook.com/mytestapp/',
      name: 'Facebook Dialogs',
      caption: 'Reference Documentation',
      description: 'Using Dialogs to interact with users.'
    };

    function callback(response) {
      document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
    }

    FB.ui(obj, callback);
  }

</script>
于 2013-04-07T08:44:09.080 に答える