Created
November 9, 2008 16:30
-
-
Save me/23303 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
require 'net/http' | |
require 'net/https' | |
http = Net::HTTP.new('profil.wp.pl', 443) | |
http.use_ssl = true | |
path = '/login.html' | |
# GET request -> so the host can set his cookies | |
resp, data = http.get(path, nil) | |
cookie = resp.response['set-cookie'] | |
# POST request -> logging in | |
data = 'serwis=wp.pl&url=profil.html&tryLogin=1&countTest=1&logowaniessl=1&login_username=blah&login_password=blah' | |
headers = { | |
'Cookie' => cookie, | |
'Referer' => 'http://profil.wp.pl/login.html', | |
'Content-Type' => 'application/x-www-form-urlencoded' | |
} | |
resp, data = http.post(path, data, headers) | |
# Output on the screen -> we should get either a 302 redirect (after a successful login) or an error page | |
puts 'Code = ' + resp.code | |
puts 'Message = ' + resp.message | |
resp.each {|key, val| puts key + ' = ' + val} | |
puts data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment