From bf77e24fab4c7546cd3283a29a32a43540b39f14 Mon Sep 17 00:00:00 2001 From: Peter Sanchez Date: Thu, 1 Jun 2023 13:49:50 -0600 Subject: [PATCH] Adding token Type to generation --- routes.go | 1 + 1 file changed, 1 insertion(+) diff --git a/routes.go b/routes.go index c306e08..7636e64 100644 --- a/routes.go +++ b/routes.go @@ -575,6 +575,7 @@ func (s *Service) AccessTokenPOST(c echo.Context) error { bt := BearerToken{ Version: TokenVersion, + Type: "OAUTH2", Issued: ToTimestamp(issued), Expires: ToTimestamp(expires), Grants: payload.Grants, -- 2.45.2