来自localhost

时间:2016-06-30 21:29:47

标签: facebook-javascript-sdk

我试图用facebook javascript SDK创建一个分享按钮:

  • 在Facebook开发者页面 - Facebook登录 - 有效的OAuth重定向URI
    我添加了我的开发网址:http://localhost:5000/

我已将此代码添加到我的页面

    window.fbAsyncInit = function() {
    FB.init({
      appId      : 'my app id xxxxxxxxxxxxx',
      xfbml      : true,
      version    : 'v2.6'
    });
  };

  (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/sdk.js";
     fjs.parentNode.insertBefore(js, fjs);
   }(document, 'script', 'facebook-jssdk'));

    $('.btnShare').click(function () {
        FB.ui({
            method: 'feed',
            link: "http://localhost:5000/",
            picture: 'http://localhost:5000/src/assets/image.JPG',
            name: "The name who will be displayed on the post",
            description: "The description who will be displayed"
        }, function (response) {
            console.log(response);
        });
    });

我点击分享按钮并打开iframe,它会抛出此错误:

Can't Load URL: The domain of this URL isn't included in the app's domains. To be able to load this URL, add all domains and subdomains of your app to the App Domains field in your app settings.

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

正如here所述,您可能需要稍微调整一下facebook中的设置。