This is a really simple question, but I cannot find any mention of this, anywhere..
How do I get the client's IP address from in Sinatra?
get '/' do
"Your IP address is #{....}"
end
|
This is a really simple question, but I cannot find any mention of this, anywhere.. How do I get the client's IP address from in Sinatra?
|
|||
|
Sinatra provides a Using
|
|||
|
|
|
I was coming to post the answer anyway.. so:
Sinatra uses the Rack::Request API, so you can use a lot of things available in it. |
|||||||||||||||||
|
@env['REMOTE_ADDR']- I had checked the@env.inspectoutput by searching for "127.0.0.1", but it was showing the IPv6::1address so I missed it... Anyone feel free to post that so I can accept it without the 48-hour wait.. (free rep! :P) – dbr Aug 23 '09 at 19:27