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 new in developing facebook login using php-sdk.I create an app in facebook and include facebook login in my website and page name is index.php.I am trying that when a user login using facebook his required details on redirect page,page name is welcome.php.

but problem is that when redirect successfull then required details are not get in redirected page .or when user details are get then redirection is not possible.

I need the value is must be on redirect page(i.e welcome.php). please help me out

share|improve this question
What code are you using to retrieve the details? Show people what you have tried then they can see if/how they can help you. – Raad Mar 4 at 10:11
Follow this link. Helped me in my time of distress. thinkdiff.net/facebook/… – Jehanzeb.Malik Mar 4 at 10:20

closed as not a real question by Till Helge, shiplu.mokadd.im, Prasanth Bendra, Ocramius, CBroe Mar 4 at 12:40

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

When generating the login url, you can include a redirect_uri parameter.

redirect_uri (optional) The URL to redirect the user to once the login/authorization process is complete. The user will be redirected to the URL on both login success and failure, so you must check the error parameters in the URL as described in the authentication documentation. If this property is not specified, the user will be redirected to the current URL (i.e. the URL of the page where this method was called, typically the current URL in the user's browser).

$params = array(
  'scope' => 'read_stream, friends_likes',
  'redirect_uri' => 'https://www.myapp.com/post_login_page'
);

$loginUrl = $facebook->getLoginUrl($params);

Source: https://developers.facebook.com/docs/reference/php/facebook-getLoginUrl/

share|improve this answer

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