Rails 4.1.6 Session ID

How to get session id from request object. The code below can be used in Rails 3 to get the session ID. But that doesn't seem to work anymore in Rails 4.1.6 and Ruby 2.1.3

request.session_options[:id]
+4
source share
1 answer
session.id

This is the right way to do this.

+10
source

All Articles