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.

Before a minute ago after successful login it redirected to site.com/home, but now the link is site.com/home?state={long-code}6&code={long_code}

And this is ugly. Any ideas?

Update

This is the code i use :

session_start();

require 'facebook-php-sdk/src/facebook.php';

$facebook = new Facebook(array(
  'appId'  => '***',
  'secret' => '***',
));

// Get User ID
$user = $facebook->getUser();

if ($user) {
  try {
    // Proceed knowing you have a logged in user who's authenticated.
    $user_profile = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    error_log($e);
    $user = null;
  }
}

$loginUrl   = $facebook->getLoginUrl(
            array(
                'scope'         => 'email,offline_access,publish_stream,user_birthday,user_location,user_work_history,user_about_me,user_hometown',
                'redirect_uri'  => 'site.con/home'
            )
    );


    $logoutUrl  = $facebook->getLogoutUrl();

//session_destroy();

// Show user data
print_r($user_profile);
share|improve this question
what is the error you getting? – guna Samba Jul 21 '12 at 15:42
There is no error the login is successful. – Marian Petrov Jul 21 '12 at 15:44

1 Answer

Update the sdk files you are using.this error comes from this file base_facebook.php this is now rectified in the new file.

Use this link for getting the latest SDK link

share|improve this answer
I download the files from facebook just before testing it. Version 3.1.1 – Marian Petrov Jul 21 '12 at 15:59
can you paste your code above. – pckabeer Jul 21 '12 at 16:00

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.