我正在关注:https ://developers.facebook.com/docs/guides/web/
我的网站有自己的登录系统(用 Django/Python 编写)。在不使用 django-social-auth 类型的插件的情况下,我想将 facebook 身份验证集成到我的网络应用程序中。
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '{{facebook_app_id}}', // App ID
channelUrl : '//{{host_name}}/external/fb_channel', // 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>
但是,我已按照说明操作(https://developers.facebook.com/docs/guides/web/),登录按钮按预期显示,单击时会显示弹出窗口以允许我的应用程序。(我在本地主机 127.0.0.1 运行我的服务器)
下一个是什么?当用户单击登录并允许它时,我希望进行一些服务器端验证以使用 fb 帐户登录我的用户。但我不确定现在该怎么做。
点击使用FB登录后,它闪烁并且没有访问我的服务器。需要一些指导。
谢谢你。