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.

For /login my application is working fine, but for /login?user="something" giving 500

I am using devise gem

routes.rb

devise_for :users, :controllers => { :sessions => 'devise/sessions'}, :skip => [:sessions]   do
  get '/login' => "devise/sessions#new", :as => :new_user_session
end

error :

Completed 500 Internal Server Error in 263ms

NoMethodError (undefined method `stringify_keys' for "\"something\"":String):


Rendered /usr/local/rvm/gems/ruby-1.9.2-head/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
Rendered /usr/local/rvm/gems/ruby-1.9.2-head/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
Rendered /usr/local/rvm/gems/ruby-1.9.2-head/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
share|improve this question
Have you tried the query string without the quotes? e.g. /login?user=something – iain Dec 26 '12 at 12:30
Yes getting same error for /login?user=something also – rkp Dec 26 '12 at 12:51
to solve this i have overwrite devise session controller. – rkp Jan 15 at 17:29

1 Answer

up vote 1 down vote accepted

stringify_keys is a method that Rails mixes into the Ruby Hash class, so the problem here is that devise is expecting a hash of attribute-value pairs in the user param instead of a plain string. In other words its expecting a User model object rather than just a user name.

The convention that Rails uses for packing nested attribute value pairs into URL query string or HTML form params uses square brackets, so you probably need something like this:

/login?user[name]=someone&user[password]=secret
share|improve this answer
Thanks @Steve, But how can I handle this exception, so user could not get 500 message. – rkp Dec 26 '12 at 15:02
I'm not sure what you expect to happen in response to /login?user=something? As far as Devise is concerned its invalid input and its just not designed to handle it. If you want to change its behaviour then you can override the Devise SessionsController and implement whatever parameter handling you want. See stackoverflow.com/questions/8070320/… – Steve Dec 26 '12 at 17:35

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.