I'm having a problem with a user logging in:
1) click facebook login button
2) user fills in information on facebook site
3) user is redirected to my site
4) this code is then run:
if ($user)
{
try
{
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me');
$fb_user_id = $user_profile['id'];
...
The api call fires an error:
OAuthException: An active access token must be used to query information about the current user.
5)the user is treated as if they never logged in.
6)manually refreshing the page causes the session to be recognized and the api call does not throw an error.
What is going on? do I need to put a delay in?

Facebook::getLoginUrl(PHP-SDK) orFB.login(JS-SDK)? – Juicy Scripter Jan 18 '12 at 16:04fb:login-button, link created withgetLoginUrlor haveFB.loginbinded on click? – Juicy Scripter Jan 18 '12 at 16:09$loginUrl = $facebook->getLoginUrl(array('next' => 'http://www.%%%.com/facebook_login.php');$loginUrl = $facebook->getLoginUrl(array('redirect_uri' => 'http://www.%%%%.com/facebook_login.php'));That ancillary problem aside, even with the example php file from the sdk, i must refresh the page for it to say logged in. – lewicki Jan 18 '12 at 16:12