我已经尝试了很长时间才能使其正常工作,但没有成功。在我的 oauth.yml 文件中,app_id 和 secret_id 与我的 Facebook 应用设置相匹配。我已经重新启动了我的服务器,以防出现未解决的配置问题。可能是什么问题呢?
我不断得到:
Given URL is not permitted by the application configuration.: One or more of the given URLs is not allowed by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App's domains
这是我的 Facebook 应用设置的屏幕截图:
我的 fb.init.html.erb 文件如下所示:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
// console.log("fbinit file");
FB.init({
appId : '<%= OAUTH_CONFIG['facebook']['app_id'] %>',
status : true,
cookie : true,
xfbml : true,
oauth : true
});
};
(function(d){
// console.log("fbinit file2");
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
谢谢你的帮助。