I am planning to integrate a Facebook Login button into my website. Right now I have a Facebook Login button that when pressed, popups a new window asking for permission to access the user's basic info and email. Everything done till now is from following http://developers.facebook.com/docs/guides/web/#login. I am using PHP (with Codeigniter framework, Tank auth authentication library) and jQuery.
Problem: Now after adding the login button to my website, Facebook no longer have any instructions on how to proceed?
- How do I retrieve the user's information from facebook to insert into my database (if first visit)
- How do I determine that the user has allowed my website to access his information?
- If access has been granted, how do I redirect the user to a new page?
I understand there have been recent changes to the SDK, and googling for tutorials on it just gives me tutorials that says they are outdated. Any help to point me in the right direction will be greatly appreciated! Thanks!
HTML/JS
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '123',
status : true,
cookie : true,
xfbml : true,
oauth : true,
});
};
(function(d){
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>
<div id="splash_fbconnect_login_button" class="fb-login-button" data-scope="email, user_education_history, user_work_history"></div>