Hi, I am new to Clojure and using clj-http for the first time, to implement
a REST client.
I don't find anywhere how to indicate where my SSL certificate is located.
Here is what I did:
(ns my-client.core
(:require [clj-http.client :as client]
[clojure.pprint :refer :all]))
(def my
There's an article here that might be useful to you:
https://www.lvh.io/posts/https-requests-with-client-certificates-in-clojure.html
With clj-http, you have to use a Java keystore. I wrote a library a few
years ago for importing certificates into keystores in Clojure, though I'm
not sure how wel