There is a way to read cookies set by rails session ?
I mean, regular cookies are easy to read, but i’m having a hard time trying to read those set by sessions.
Thanks in advance.
There is a way to read cookies set by rails session ?
I mean, regular cookies are easy to read, but i’m having a hard time trying to read those set by sessions.
Thanks in advance.
By default those cookes are marked as httponly which means that javascript on the page can't read them. I think you can change this in the same place as other session options
Fred