1 2 3 4 5 6 7 8 9
(ns dummy-auth.oauth2.token (:require [ring.util.response :as ruresp])) (defn handle [_req] (println "oauth2/token: responding...") (ruresp/response {"access_token" "abc" "refresh_token" "abc" "token_type" "Bearer" "expires" 0}))