Possible Duplicate:
Play Framework appending #= to redirect after Facebook auth via OAuth2?

Has anyone else seen this happen?
i'm building a Facebook canvas app using the Facebook PHP SDK, and some Javascript.
Now when i take the user through the OAuth authentication flow, i have noticed that the url in the browser automatically gets appended with this "#_=_" , so my url starts looking like this
http://apps.facebook.com/xxxxxxxxxxxx/#_=_
and when i redirect to the app profile page the url is this http://www.facebook.com/apps/application.php?id=xxxxxxxxxxxx#_=_
i'm redirecting using
echo "<script type='text/javascript'>top.location.href='$appcanvasurl';</script>"
to the canvas url, and
echo "<script type='text/javascript'>top.location.href='$appprofurl';</script>"
So why is this #_=_ getting appended?

link|improve this question
i have noticed that the #_=_ is still getting appended even when redirect_uri has been specified. There is a workaround though, using javascript at this : stackoverflow.com/q/7131909/720508 and here : facebook.stackoverflow.com/questions/7338853/… – bool.dev Oct 11 '11 at 4:58
Add the following to your head tag to resolve this issue: <script type="text/javascript">if (window.location.hash == '#_=_')window.location.hash = '';</script> – Safran Ali Jan 3 at 17:21
@SafranAli that doesn't solve it, please excuse me for this late follow up. window.location.hash is anyway empty, only parent or top location has this hash i guess. window here refers to the iframe that the app is running in, the hash of the parent frame is #_=_ i think. share your thoughts please. – bool.dev Mar 2 at 22:11
feedback

closed as exact duplicate by casperOne Jan 3 at 17:48

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

See This: https://developers.facebook.com/blog/post/552/

Change in Session Redirect Behavior

This week, we started adding a fragment #_=_ to the redirect_uri when this field is left blank. Please ensure that your app can handle this behavior.

link|improve this answer
awesome, thanks, have to keep reading the blog, and not just code :) – bool.dev Sep 20 '11 at 12:55
feedback

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