我正在尝试使用javascript sdk在我们的网站上呈现XFBML表单而且我一直在
无法加载注册表单。您可能以前在Facebook上屏蔽了此应用。转到您的Facebook隐私设置以取消阻止此应用。 (错误:'client_id'无效。)
我的应用已注册且ID正确。
代码看起来像是:
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '118446328234891', // App ID
channelUrl : '//www.sakshum.org/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
});
// Additional initialization code here
};
// 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));
</script>
<script src="https://connect.facebook.net/en_US/all.js#appId=118446328234891&xfbml=1"></script>
<fb:registration fields="name,birthday,gender,location,email" redirect-uri="http%3A%2F%2Fwww.sakshum.org%2FFbValidation" width="530">
</fb:registration>
如果我只使用非iframe使用非xfbml版本,那么一切正常。
答案 0 :(得分:2)
看起来问题是使用编码的redirect_uri。将其更改为普通网址可以解决问题。
答案 1 :(得分:0)
redirect-uri必须与您的Facebook应用中的“网站网址”设置匹配。