そこで、javascript sdk を使用して Facebook ログインのリンクを完了しました。
<script>
window.fbAsyncInit = function() {
FB.init({
appId: '{{facebook_app_id}}',
channelUrl : '//localhost:8097/channel.html',
status: true,
cookie: true,
xfbml: true
});
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
// connected
alert(response.authResponse.userID);
FB.api('/me', function(response) {
var userInfo = document.getElementById('user-info');
userInfo.innerHTML = '<img src="https://graph.facebook.com/' + response.id + '/picture" style="margin-right:5px"/>' + response.name;
alert(response.name);
document.getElementById('fb-root').appendChild(userInfo);
});
} else if (response.status === 'not_authorized') {
// not_authorized
alert("not_authorized");
} else {
// not_logged_in
alert("not_logged_in");
}
});
FB.Event.subscribe('{% if current_user %}auth.logout{% else %}auth.login{% endif %}', function(response) {
{% if current_user %} window.location = "/logout" {% else %} window.location.reload(); {% endif %}
});
};
(function() {
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
そう、
javascript を使用して引数を渡し、データをデータストアに安全に挿入するにはどうすればよいですか。例、Response.name。フェイスブックのログインでも。彼らはログイン応答にトークンを使用していることに気付きました。これは、python facebook サンプル データストアにもあります。ただし、独自のログイン システムを作成したので、そのトークンを使用する必要はまったくないと思います。そのトークンをまったく使用しないことによるリスクはありますか?