Is there a way to use MutualTLS / SSL client certificates and keys for authentication? I'm working with an endpoint that does all of it's authentication via SSL.
For cmdline curl, I'd use
--cert certfile --key keyfile
And for httr2, I believe the preferred way is
httr2::req_options(sslcert = certfile, sslkey = keyfile)
I see there's some support for an oauth and API-key headers. Would be great to have something similar & integrated for SSL key authentication. The OpenAPI spec includes MutualTLS as one of the supported methods.
Thanks
Is there a way to use MutualTLS / SSL client certificates and keys for authentication? I'm working with an endpoint that does all of it's authentication via SSL.
For cmdline curl, I'd use
--cert certfile --key keyfileAnd for httr2, I believe the preferred way is
httr2::req_options(sslcert = certfile, sslkey = keyfile)I see there's some support for an oauth and API-key headers. Would be great to have something similar & integrated for SSL key authentication. The OpenAPI spec includes MutualTLS as one of the supported methods.
Thanks