我正在尝试为我的网站使用 Facebook 的注册工具。我希望 Facebook 用户可以无缝登录到我的网站,但非 Facebook 用户也可以通过该统一 UI 创建帐户。
我<fb:registration>
为此目的使用标签。如果我在到达该页面时已经连接到 Facebook,那么一切都会按预期进行(表单中预先填写了我的 Facebook 帐户中的信息)。但如果我没有连接到 Facebook,则会显示以下错误:Invalid 'client_id'.
.
我究竟做错了什么?
非常感谢您的帮助。
您将在下面找到从服务器呈现的 HTML 代码:
<!doctype html>
<html xmlns:fb='http://www.facebook.com/2008/fbml'>
<head id='head'>
<title>MyWebSite - Signup</title>
<link rel='stylesheet' type='text/css' href='/client/Core.css'/>
<script language='JavaScript' type='text/javascript' src='/client/jQuery.js'></script>
<script type='text/javascript'>
function initialize() {
$.getScript('client/Core.js');
$.getScript(document.location.protocol + '//connect.facebook.net/en_US/all.js');
}
window.fbAsyncInit = function() {
FB.init({
appId : 123456789, // replaced here by my App ID
session : {},
status : true,
cookie : true,
xfbml : true
});
FB.Event.subscribe('auth.login', function() {
window.location.href = 'DoLogin';
});
};
</script>
</head>
<body onload='initialize();'>
<span id='fb-root'></span>
<fb:registration
fields='[{"name":"name"},{"name":"first_name"},{"name":"last_name"},{"name":"email"},{"name":"location"},{"name":"gender"},{"name":"password","view":"not_prefilled"},{"name":"captcha"}]'
redirect-uri='http://172.16.100.31/DoSignup'
width='600'
fb_only='false'
allowTransparency='true'>
</fb:registration>
</body>
</html>