I guess you could use some form of JavaScript trickery to retrieve information from the browser instance but not sure how accurate it would be
Depends on your use case I guess, but why not set a cookie for each visitor and check that way
I am using a Rails 4 application, when in production mode i am getting
same IP address for all the members of the same organisation. The
requirement is to get different IP address for each member so as to
uniquely identify each system.
request.remote_ip
request.env['HTTP_X_REAL_IP']
request.env["HTTP_X_FORWARDED_FOR"]
All these fetches me the same IP for each system. How can i uniquely
identify each system? Please help.