Reputation: 12072
Im trying to get the cookies, from the controller, with puts request.headers['Cookie']
and nothing is showing in my terminal.
My see the details in chrome tools:
How to get the cookie, please?
Edit
Upvotes: 3
Views: 4181
Reputation: 6564
try this
request.headers["Cookie"]
http://api.rubyonrails.org/classes/ActionDispatch/Request.html#method-i-headers
Upvotes: 6