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.

Only 10 hours ago, if I call $facebook->getUser(), I can get the correct user_id, but now, it always returns 0. Of cource, I have not changed my code.

There is another strange point.

redirect_url contains:

?sate=9b1772342342...&code=9b177asd2l..&base_domain=9b1772.3423#=

I can't release the site.. Please help!

link|improve this question
Could you post your code... – Sudhir Dec 21 '11 at 9:08
the solution works so please accept the answer! – bool.dev Dec 21 '11 at 11:53
feedback

1 Answer

up vote 12 down vote accepted

I think this is a Facebook bug, I just finished figuring it out myself. You need to alter the Base_Facebook class, and add in a new query param to strip out. The base_domain param is being accidentally appended to the redirect url, hopefully a fix will be rolled out soon.

  /**
   * List of query parameters that get automatically dropped when rebuilding
   * the current URL.
   */
  protected static $DROP_QUERY_PARAMS = array(
    'code',
    'state',
    'signed_request',
    'base_domain', // this is the one you need to add
  );
link|improve this answer
Thank you very much!!! fixed it!! – Taro Heisai Dec 21 '11 at 9:17
thanks this saved my day! – Patonza Dec 21 '11 at 9:19
Glad I could help, you're welcome! – Andy Blackwell Dec 21 '11 at 9:25
Worked for us too; cheers. – Chris Paterson Dec 21 '11 at 10:33
2  
This is now acknowledged by FB as a bug: developers.facebook.com/bugs/220904677985962 – Patonza Dec 21 '11 at 13:46
feedback

Your Answer

 
or
required, but never shown

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