Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Facebook callback has started appending #_=_ hash underscore to the Return URL

Does anyone know why? What is the solution?

share|improve this question
I'm also facing with same problem: stackoverflow.com/q/7190184/912011 However, I think it may be related with Firefox release. – Jet Php Aug 25 '11 at 13:31
Did anyone find a solution to this problem? The standard facebook connect sdk does not work. – user210504 Sep 15 '11 at 5:52
The best we can do until Facebook corrects this bug (or their documentation) is in my answer below. First, set up your login urls in accordance with their documentation. And second, add a quick header javascript hack to avoid this in your code. This will degrade well if Facebook ever fixes this. – Ryan Sep 16 '11 at 4:25
10  
Any idea how facebook appends these characters? Facebook redirects to my handler where I then handle the redirection to the return url, yet the characters are still appended to the url. – Ben Foster Feb 22 '12 at 16:41
3  
2013, still happening on Chrome... – TTT Apr 5 at 12:49
show 3 more comments

10 Answers

via Facebook's Platform Updates:

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.

To prevent this, set the redirect_uri in your login url request like so: (using Facebook php-sdk)

$facebook->getLoginUrl(array('redirect_uri' => $_SERVER['SCRIPT_URI'],'scope' => 'user_about_me'));

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:

<script type="text/javascript">if (window.location.hash == '#_=_')window.location.hash = '';</script>
share|improve this answer
the fragment is still there – Chris Sep 7 '11 at 18:50
You're right. Their documentation here seems to be wrong. – Ryan Sep 7 '11 at 23:20
4  
what field is left blank? This is very cryptic – user210504 Sep 15 '11 at 5:53
11  
Ridiculous. They can't even get their own docs right – Brenden Oct 7 '11 at 23:39
5  
@Ryan Update almost works for me, I still get a hash (/#) on the end. Not happy with FB. – LillyPop Jun 3 '12 at 17:00
show 6 more comments

if you want to remove the remaining "#" from the url

if (window.location.hash == '#_=_') {
    window.location.hash = ''; // for older browsers, leaves a # behind
    history.pushState('', document.title, window.location.pathname); // nice and clean
    e.preventDefault(); // no page reload
}
share|improve this answer
2  
tried this. getting 'e is not defined' error in the console. – santosh Oct 15 '12 at 4:16
$(window).on('load', function(e){ /*likebeats's code*/ } works. – ISHITOYA Kentaro Oct 24 '12 at 12:30

Not sure why they're doing this but, you could get around this by reseting the hash at the top of your page:

if (window.location.hash == "#_=_")
  window.location.hash = "";
share|improve this answer
2  
did not work for me – user210504 Sep 15 '11 at 6:26
doesn't work for me either... – bool.dev Mar 2 '12 at 22:13

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 #_=_ it means that the page was in its basic state prior to leaving it. Because this anchor is parsed by the browser, you need not worry about it.

share|improve this answer

Adding this to my redirect page fixed the problem for me ...

if (window.location.href.indexOf('#_=_') > 0) {
    window.location = window.location.href.replace(/#.*/, '');
}
share|improve this answer

Major annoying, especially for apps that parse the URI and not just read the $_GET... Here's the hack I threw together... Enjoy!

<html xmlns:fb='http://www.facebook.com/2008/fbml'>
<head>
        <script type="text/javascript">
        // Get rid of the Facebook residue hash in the URI
        // Must be done in JS cuz hash only exists client-side
        // IE and Chrome version of the hack
        if (String(window.location.hash).substring(0,1) == "#") {
                window.location.hash = "";
                window.location.href=window.location.href.slice(0, -1);
                }
        // Firefox version of the hack
        if (String(location.hash).substring(0,1) == "#") {
                location.hash = "";
                location.href=location.href.substring(0,location.href.length-3);
                }
        </script>
</head>
<body>
URI should be clean
</body>
</html>
share|improve this answer

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:

1. GET <https://www.facebook.com/dialog/oauth?client_id=MY_APP_ID&scope=email&redirect_uri=MY_REDIRECT_URL> RESPONSE 302 Found Location: <https://www.facebook.com/connect/uiserver.php?[...]>  
2. GET <https://www.facebook.com/connect/uiserver.php?[...]> RESPONSE 302 Found MY_REDIRECT_URL?code=FB_CODE#_  
3. GET MY_REDIRECT_URL?code=FB_CODE#_  

Happens only with Firefox for me too.

share|improve this answer

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.

share|improve this answer
1  
I am not sure, what is he referring to here – user210504 Sep 15 '11 at 6:26

You can also specify your own hash on the redirect_uri parameter for the Facebook callback, which might be helpful in certain circumstances e.g. /api/account/callback#home. When you are redirected back, it'll at least be a hash that corresponds to a known route if you are using backbone.js or similar (not sure about jquery mobile).

share|improve this answer

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

FB.login(function (response) {
    doSomethingWithTheFBResponse(response);
}, {
    scope: 'email', redirect_uri: 'http://ptu.jaysonragasa.net/fbpostbackproxy.html', display: 'touch'
});

in your fbpostbackproxy.html file, the content should have a dead simple code

<script type="text/javascript">
    window.location = "index.html"; // your default page
</script>
share|improve this answer

protected by Igy Jul 12 '12 at 9:31

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.

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