From 5f7289bb0504eb9f93aa689c635283f954e45e3d Mon Sep 17 00:00:00 2001 From: mr Date: Tue, 10 Feb 2026 10:53:13 +0100 Subject: [PATCH] a.getPath(true, true) --- infrastructure/auth_connector/hydra_connector.go | 1 + 1 file changed, 1 insertion(+) diff --git a/infrastructure/auth_connector/hydra_connector.go b/infrastructure/auth_connector/hydra_connector.go index 80792f4..7ee3c80 100644 --- a/infrastructure/auth_connector/hydra_connector.go +++ b/infrastructure/auth_connector/hydra_connector.go @@ -244,6 +244,7 @@ func (a HydraConnector) Introspect(token string, cookie ...*http.Cookie) (bool, urls.Add("token", token) resp, err := a.Caller.CallForm(http.MethodPost, a.getPath(true, true), "/introspect", urls, "application/x-www-form-urlencoded", true, cookie...) + fmt.Println(a.getPath(true, true)) if err != nil || resp.StatusCode >= 300 { return false, err }