Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have attempted to implement the Facebook Javascript SDK login into my website but need to store information about the user so that when the user logs back in using Facebook I have information stored about them such as their previous in-website activities. Could I integrate this into a MySQL database?

share|improve this question

1 Answer

I think you may searching for the following way of storing logged user information into mysql database,

FB.login(function(response) {
  if (response.authResponse) {
    console.log('Welcome!  Fetching your information.... ');
    FB.api('/me', function(response) {
     var fbname=response.name;
     var fbid=response.id;
     $.ajax({
     type: "POST",
     url: page_for_storing_information,
     data: "name="+fbname+"&uid="+fbid,
         success: function(msg){ 
          }
         });
    console.log('Good to see you, ' + response.name + '.');
   });
  } else {
    console.log('User cancelled login or did not fully authorize.');
  }
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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