Add introspection endpoint

This commit is contained in:
Henry Hiles 2025-07-20 16:27:53 -04:00
commit 53867e273b
No known key found for this signature in database
2 changed files with 27 additions and 0 deletions

View file

@ -36,6 +36,7 @@ void main(List<String> argsRaw) async {
..get("/userinfo", apiHelper.userinfoHandler)
..get("/bridge", apiHelper.bridgeHandler)
..post("/login", apiHelper.loginHandler)
..post('/introspect', apiHelper.introspectionHandler)
..post("/logout", apiHelper.logoutHandler)
..post("/token", apiHelper.tokenHandler))
.call,