I'm using Devise and OmniAuth (Facebook) in a Rails 3 app. I just started noticing this behavior recently.

When a user signs in, he is redirected to his dashboard, however, the characters "#_" are being appended to the url. The only thing I can think of now is a conflict between the routes created by:

  resources :users

and

  # User Authentication
  devise_for :users,
         :singular => :user,
         :controllers => {:registrations => 'registrations'} do
    get 'logout' => 'devise/sessions#destroy'
  end
link|improve this question

62% accept rate
2  
This happens to me too – Bruce Banner Aug 29 '11 at 6:50
Seeing same with #_=_ in my Rails 3.1 app on some urls. Not using devise, but Omniauth. – Nico Sep 11 '11 at 16:26
feedback

1 Answer

up vote 9 down vote accepted

Is this only happening with Facebook? If so it is probably related to: https://developers.facebook.com/blog/post/552/. Notice how Facebook outlines that they changed the session redirect handling to append a #_=_ to responses. I'm not sure why this was done, however you may be able to fix it by supplying an explicit redirect url.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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