Facebook callback has started appending #_=_ hash underscore to the Return URL
Does anyone know why? What is the solution?
|
|
via Facebook's Platform Updates:
To prevent this, set the redirect_uri in your login url request like so: (using Facebook php-sdk)
UPDATE The above is exactly as the documentation says to fix this. However, Facebook's documented solution does not work. Please consider leaving a comment on the Facebook Platform Updates blog post and follow this bug to get a better answer. Until then, add the following to your head tag to resolve this issue:
|
|||||||||||||||||
|
|
if you want to remove the remaining "#" from the url
|
|||||||
|
|
Not sure why they're doing this but, you could get around this by reseting the hash at the top of your page:
|
|||||||
|
|
Facebook uses a frame and inside of it everything functions using AJAX communication. The biggest problem in this case is preserving the current page state. As far I understand, Facebook decided to use simulated anchors. This means if you clicked somewhere, they simulate that as an anchor inside of your page, and when the AJAX communication starts, they change the anchor bit of your URL as well. This solution helps you normally when you try to reload the page (not ENTER, press F5), because your browser sends the whole URL with anchors to the Facebook server. Therefore Facebook picks up the latest state (what you see) and you are then able to continue from there. When the callback returns with |
||||
|
|
|
Adding this to my redirect page fixed the problem for me ...
|
|||
|
|
|
Major annoying, especially for apps that parse the URI and not just read the $_GET... Here's the hack I threw together... Enjoy!
|
||||
|
|
|
I do not see how this problem is related to facebook AJAX. In fact the issue also occurs with JavaScript disabled and purely redirect based logins. An example exchange with facebook:
Happens only with Firefox for me too. |
||||
|
|
|
A change was introduced recently in how Facebook handles session redirects. See "Change in Session Redirect Behavior" in this week's Operation Developer Love blog post for the announcement. |
|||||
|
|
You can also specify your own hash on the |
||||
|
|
|
Yet there are some still answers and probably your last resort. Make a temporary html file, say "fbpostbackproxy.html" and your "redirect_uri" value should be pointed into that html file. like here
in your fbpostbackproxy.html file, the content should have a dead simple code
|
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.