我正在尝试为 Facebook 使用 Javascript SDK,但我不断收到消息:
应用程序配置不允许给定 URL。:应用程序的设置不允许一个或多个给定 URL。它必须与网站 URL 或画布 URL 匹配,或者域必须是应用程序域之一的子域
但我已经从设置部分复制并粘贴了我的画布 URL。有人有什么想法吗?
我的代码行是:
var myDomain='https://www.foxenet.com/fb/passwords/channel.html';
初始化脚本:
// init the FB JS SDK
FB.init({
appId : gAppID, // App ID from the App Dashboard
channelUrl : myDomain, // Channel File for x-domain communication
status : true, // check the login status upon init?
cookie : true, // set sessions cookies to allow your server to access the session?
xfbml : true // parse XFBML tags on this page?
});