I\'m trying to connect to the server https://www.xpiron.com/schedule in a ruby script. However, when I try connecting:
https://www.xpiron.com/schedule
require \'open-uri\' doc
After a full day of hacking, this one finally worked for me:
url = URI.parse("https://full-url?test=1&foo=bar") response = Net::HTTP.start(url.host, use_ssl: true, ssl_version: 'SSLv3', verify_mode: OpenSSL::SSL::VERIFY_NONE) do |http| http.get url.request_uri end