I'm using Facebook Connect to allow users to login to my site. I have written all the code to check the database for their Facebook ID or email address to make sure I don't get duplicate users.
The problem is that when a user signs up using Facebook, 90% of the time, Facebook Connect has not managed to load all the user information to add to my database.
$fb_userid = $user_profile['id'];
$fb_firstname = $user_profile['first_name'];
$fb_lastname = $user_profile['last_name'];
$fb_email = $user_profile['email'];
This is all the information I am grabbing, but I'm getting randomly my test user accounts logging and the variables above that I have set are not inputted in to the database.
Is there a delay I can add or a refresh or check of these variables to make sure they contain data before the write to the database is done?