Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

Possible Duplicate:
Facebook Callback appends ‘#_=_’ to Return URL

Well its not an problem that i am facing since its not mixing up in any way with my code, but just an curiosity to know why the URL of my app gets appended by this extra characters as #= when user logs into my site using Facebook api ?

For eg my url should be

 www.xyz.com/viewResume

but it actually is

 www.xyz.com/viewResume#_=_

Any particular reason for this behaviour ? Am using Codeigniter Framework

share|improve this question

marked as duplicate by Igy, false, Rüdiger Hanke, Bryan Crosby, Linger Dec 18 '12 at 20:03

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

I forget why it does it, I searched for a while too but it's just remnants of the return URL FB posts if I remember right. It's pretty easy to make go away with a little js on the page that you send users back to after login though.

    <script type="text/javascript">
    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
    }
</script>
share|improve this answer

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