Hello everyone I am new to ruby and have been struggeling with this http api thing. I need to do a request with certian request headers, certain post variables and SSL. I got it to work with SSL and the headers, but I just cant get it to work when i try to cenvert it to post. Very frustrating. Heres how far i got (this is without post, which i couldnt get to work): post_me = 'xml data' headers = {'Header' => 'Whatever'} uri = URI.parse("https://example.com") http = Net::HTTP.new(uri.host, uri.port) http.use_ssl = true http.verify_mode = OpenSSL::SSL::VERIFY_NONE response = http.post(uri.request_uri, get_string, headers) Any help very much apreciated -- Posted via http://www.ruby-forum.com/.