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.

I have a project using jQuery Mobile (uses resource identifier heavily) with Facebook authentication. Recently Facebook started adding #_=_ to callbacks (see here). This is killing jQuery Mobile.

Is it possible to do an automatic redirect for any routes matching #_=_ to the stripped counterpart? Is it possible to specify a resource identifier (#) when doing a redirect to? Any other possible fixes? I currently use a javascript redirect but this causes duplicate page loads and issues with some of the analytics.

share|improve this question

1 Answer

up vote 1 down vote accepted

Added in the following work around until Facebook fixes it (seems to work):

# app/controllers/omniauth_controller.rb

def create
  ...
  js_redirect_to(user_path)
end

private

def js_redirect_to(path)
  @location = path
  render "shared/redirect"
end

# app/views/shared/redirect.html.haml

:javascript
  window.location = '#{@location}'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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