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:
URL Fragment and 302 redirects

I am integrating Facebook login into my site. When Facebook redirects to my site with the code query parameter, there is a hash at the end http://myurl.com/code=xxx#_=_ When I then redirect from this url to another url at my site:

header('Location: http://myurl.com/home');

It keeps the hash tag and ends up as http://myurl.com/home#_=_

Is there a way to redirect without the hash or if anyone is familiar with Facebook a way to get it to stop adding the hash in the first place?

share|improve this question
this is a post for the facebook problem stackoverflow.com/questions/7131909/… – Chris Sep 7 '11 at 18:43

marked as duplicate by hakre, PeeHaa 埽, DaveRandom, Adam Arold, rds Jan 23 at 13:21

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.

2 Answers

up vote 1 down vote accepted

It seems JavaScript is the only way to remove a hash since the hash is never sent to the server in any way. So I added a script to a blank page:

window.location.hash = '';  window.location.href = "http://myurl.com"

This is the answer for now, but I will accept better ones.

share|improve this answer

You can redirect on your server side PHP to a URL that includes its own hash. That's what I had to to to a ruby app that uses backbone.js.

PS - I specified the redirect_uri and FB still appended the stupid #_=_ string :/

share|improve this answer

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