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 am using php sdk for my facebook application. I am using following code for login url

if (isset($username)) {
    $loginUrl = $facebook->getLoginUrl(
            array(
                'scope' => $scope,
                'redirect_uri' => 'http://www.mysite.com/redirect.php?username=' . $username
            )

My problem is that after login when facebook redirects page to redirect.php but it removes ?username=ursername. I need the username as get parameter after login. How can i do this. Please suggest me. Thanks in advance.

share|improve this question
What are you trying? Please elaborate more – jka Jan 13 at 9:50
I am trying to redirect user in this page after facebook login mysite.com/redirect.php?username=krishna but facebook redirects to mysite.com/redirect.php – Krishna Karki Jan 13 at 9:53
What error it is showing? – jka Jan 13 at 9:54
its not showing any error. its just redirecting me to redirect.php i need to redirect on redirect.php?username=myusername – Krishna Karki Jan 13 at 9:58

1 Answer

You cannot pass username to the redirect_uri. It's not really meant for this, but there is a state parameter you can pass that gets returned to you.

See the documentation:

https://developers.facebook.com/docs/reference/dialogs/oauth/

define('REDIRECT_URI',"YOUR-REDIRECT-URL-HERE");
    $user = null;

    $facebook = new Facebook(array(
        'appId' => FACEBOOK_APP_ID,
        'secret' => FACEBOOK_SECRET,
        'cookie' => true
    ));

    if (isset($username)) {
    $loginUrl = $facebook->getLoginUrl(
            array(
                'scope' => $scope,
                'redirect_uri' => REDIRECT_URI
            )
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.