September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
|
|
@ -0,0 +1,12 @@
|
|||
require 'uri'
|
||||
require 'net/http'
|
||||
|
||||
uri = URI.parse('https://www.example.com')
|
||||
pem = File.read("/path/to/my.pem")
|
||||
cert = OpenSSL::X509::Certificate.new(pem)
|
||||
key = OpenSSL::PKey::RSA.new(pem)
|
||||
response = Net::HTTP.start(uri.host, uri.port, use_ssl: true,
|
||||
cert: cert, key: key) do |http|
|
||||
request = Net::HTTP::Get.new uri
|
||||
http.request request
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue