(ns activity-pub-poc.json-ld (:require [hato.client :as http] [clojure.inspector :as ins] )) (def team-url "https://social.meissa-gmbh.de/users/team") (defn json-get [url] (:body (http/get url {:headers {"Accept" "application/json"} :http-client {:redirect-policy :normal} :as :json-string-keys}))) (ins/inspect-tree (json-get team-url))