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 }