activity-pub-poc/src/main/clj/dda/activity_pub_poc/json_ld.clj

11 lines
253 B
Clojure
Raw Normal View History

2023-06-15 13:00:46 +00:00
(ns activity-pub-poc.json-ld
(:require
[hato.client as http]
))
(defn json-get [url]
(hato/get url
{:headers {"Accept" "application/json"}
:http-client {:redirect-policy :normal}
:as :json-string-keys}))