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?
redirect_urihas 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<script type="text/javascript">if (window.location.hash == '#_=_')window.location.hash = '';</script>– Safran Ali Jan 3 at 17:21