Finding the session id in rails 3
Have you tried the following?
request.session_options[:id]
It also returns the session ID:
session[:session_id]
Rails 4.0 onwards should be:
session.id
Have you tried the following?
request.session_options[:id]
It also returns the session ID:
session[:session_id]
Rails 4.0 onwards should be:
session.id