diff --git a/src/main/clj/dda/activity_pub_poc/json_ld.clj b/src/main/clj/dda/activity_pub_poc/json_ld.clj index 2088409..4174b76 100644 --- a/src/main/clj/dda/activity_pub_poc/json_ld.clj +++ b/src/main/clj/dda/activity_pub_poc/json_ld.clj @@ -1,10 +1,10 @@ (ns activity-pub-poc.json-ld (:require - [hato.client as http] + [hato.client :as http] )) (defn json-get [url] - (hato/get url + (http/get url {:headers {"Accept" "application/json"} :http-client {:redirect-policy :normal} :as :json-string-keys}))