Created
August 25, 2011 14:12
-
-
Save miloops/1170760 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
login = 'mail...' | |
password = 'pass...' | |
require "net/http" | |
require "net/https" | |
uri = URI.parse("https://eventioz.com/session.json") | |
http = Net::HTTP.new(uri.host, uri.port) | |
http.use_ssl = true | |
http.verify_mode = OpenSSL::SSL::VERIFY_PEER | |
request = Net::HTTP::Post.new(uri.request_uri) | |
request.set_form_data({ | |
"login" => login, | |
"password" => password, | |
}) | |
response = http.request(request) | |
# no llego nunca acá rompe en la autentificación. | |
puts response |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment