Is there a difference between request.cookies
and cookies
object in Ruby on Rails?
I am currently trying to send a request with a cookie from my node.js server to my ROR4 application. It seems that in the ROR application, request.cookies
contains the cookie that I am sending however cookies
object (on which existing logic is based) do not have it.
I have searched the docs but was not able to find anything relevant. Is there something that I have missed? Any help is appreciated.