HTTP Request with PEM cert

204 Views Asked by At

Here my simple class to request thru HTTPS a webservice with PEM cert.

require [omit verbose]

class Api

    def initialize
        @ctx = OpenSSL::SSL::Context::Client.new
        @ctx.private_key = "/home/XXXXXX/development.pem"
        @ctx.verify_mode = LibSSL::VerifyMode::NONE
    end

    def customers
        response = HTTP::Client.get "https://XXX.XXX.XXX.XXX:XXXX/api/customers", nil, nil, @ctx
        puts response.status_code
        puts response.body
        puts response.inspect
        nil
    end

end

Api.new.customers

But I only receive a 401 Authorization required with crystal run src/api.cr.

1

There are 1 best solutions below

0
On

You need to set certificate_chain too.

Add this line in initialize method

@ctx.certificate_chain = "/home/XXXXXX/development.pem"