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?

  1. How do I retrieve the user's information from facebook to insert into my database (if first visit)
  2. How do I determine that the user has allowed my website to access his information?
  3. 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>
link|improve this question

so you are using javascript for facebook login? or php? add the login code please. – bool.dev Feb 17 at 6:17
Updated the original question with the code. I'm not sure where should I use Javascript or PHP SDK? Or do I need both? Really confused, sorry – Nyxynyx Feb 17 at 14:06
same as bool dev, you have to provide facebook login code here, so that it could be troubleshooted.. – N e w B e e Feb 17 at 14:39
By facebook login code, do you mean the PHP or the JS code? – Nyxynyx Feb 17 at 14:49
With the code above in the post, I already get a FB login button, which when clicked, shows a new window that pops up asking for permission. Wonder how to proceed from there – Nyxynyx Feb 17 at 14:54
feedback

1 Answer

up vote 2 down vote accepted

Quick edit: Go to https://github.com/facebook/connect-js make sure you have the latest version and use the PHP one, it makes it a hell of a lot easier i found.

1) How do I retrieve the user's information from facebook to insert into my database (if first visit)

$user_profile['last_name'];
$user_profile['first_name'];
$user_profile['gender']; 

etc.

2) How do I determine that the user has allowed my website to access his information?

The facebook API knows this, dont worry :-) as when the user clicks login a popup comes up (as you mentioned in your question) and when they click allow its done.

One thing you must do however is create an App in facebook otherwise it wont work, im not sure if you have done this or not so go to https://developers.facebook.com/apps

3)If access has been granted, how do I redirect the user to a new page?

Javascript redirect in an if statement, this is what mine looks like

Be sure to set some variables here too:

   <?php // Set the variables for the MVC
      $first_name = $user_profile['first_name'];
      $last_name = $user_profile['last_name'];
      $full_name = $first_name . " " . $last_name;
      $fb_id = $user_profile['id'];
      $gender = $user_profile['gender'];



       $SrcUser = mysql_query("SELECT * FROM users WHERE fb_id = '" . $fb_id . "'") or die(mysql_error());
      $CheckDB = mysql_num_rows($SrcUser);

      if($CheckDB == 1){
          // If user has an account

          while ($row = mysql_fetch_array($SrcUser)) 
                { 
                     $id = $row["id"];
                     $user_level = $row["user_level"];
                }
        session_start();
        $_SESSION['user_name'] = $full_name;
        $_SESSION['user_level'] = $user_level;
        $_SESSION['user_id']= $id;  
        // Javascript redirect.. its kinda cheating to be honest as if i dont use it i will have awkwardness with header errors
        ?>
  <script type="text/javascript">
        window.location = "myaccount.php"
        </script>
        <?
      } else {
          // If user does not have an account create new
        ?>  <?
        session_start();
        $_SESSION['fb_id']= $fb_id;  

        if($gender == "male"){
            $gender = "1";
        } else {
            $gender = "0";
        }
        $_SESSION['r_full'] = $full_name;
        $_SESSION['r_gender'] = $gender;

        mysql_query("INSERT INTO users (full_name, gender, fb_id)
            VALUES ('$full_name','$gender','$fb_id')");
        $user_id = mysql_insert_id();  
        $md5_id = md5($user_id);
        mysql_query("update users set md5_id='$md5_id' where id='$user_id'");

            $md5_id = md5($user_id);
            mysql_query("update users set md5_id='$md5_id' where id='$user_id'");

        ?>

Hope this helps!

link|improve this answer
Thanks Ian, which part of the Facebook PHP SDK docs tellss us that we can get the last name etc from $user_profile['last_name']; etc? – Nyxynyx Feb 17 at 14:25
@Nyxynyx No problem :-) if it is the right answer dont forget to put the tick in if it works for you =). It took me so long to find out those parameters it was unreal! In the end i ended up looking at the array the PHP version prints out, you will see like [first_name] = ian [last_name] = blahh [gender] = male etc, and what you see in the [] i assumed they were params, which they were. But i am unsure where the official documentation is, in the old SDK there was some clear docu, but not any more :-/ i would also suggest looking at the graph api section on the facebook site. – Jack4 Feb 17 at 14:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.