how can I make HTTP Requests under Ruby with modiefied header?
I want to add attributes like "PublicKey" and "Accept".
And I want add a new authentication header value like "Basic".
My approach:
uri = URI('https://www.blablubbxxx0.com/')
Net::HTTP.get(uri)
.
.
.
.
.
.
.
.