From 278fc560e19963868c29621f4a379fc62f6d037d Mon Sep 17 00:00:00 2001 From: Brent Halsey Date: Tue, 23 Dec 2025 07:24:59 -0700 Subject: [PATCH 1/2] add dpop token and error type --- pkg/fusionauth/Domain.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/fusionauth/Domain.go b/pkg/fusionauth/Domain.go index 6e2dc4e..0a23d25 100644 --- a/pkg/fusionauth/Domain.go +++ b/pkg/fusionauth/Domain.go @@ -4762,6 +4762,7 @@ const ( OAuthErrorType_AuthorizationPending OAuthErrorType = "authorization_pending" OAuthErrorType_ExpiredToken OAuthErrorType = "expired_token" OAuthErrorType_UnsupportedTokenType OAuthErrorType = "unsupported_token_type" + OAuthErrorType_InvalidDpopProof OAuthErrorType = "invalid_dpop_proof" ) /** @@ -6717,6 +6718,7 @@ type TimeBasedDeletePolicy struct { * * Draft RFC on OAuth 2.0 Message Authentication Code (MAC) Tokens * + *
  • DPoP Token type as defined by
  • * * * @author Daniel DeGroff @@ -6730,6 +6732,7 @@ func (e TokenType) String() string { const ( TokenType_Bearer TokenType = "Bearer" TokenType_MAC TokenType = "MAC" + TokenType_DPoP TokenType = "DPoP" ) /** From c625c472e2746ddc6fd3f38fb5bc9c91233d9c91 Mon Sep 17 00:00:00 2001 From: Brent Halsey Date: Mon, 5 Jan 2026 14:20:03 -0700 Subject: [PATCH 2/2] update copyright year --- pkg/fusionauth/Client.go | 2 +- pkg/fusionauth/Domain.go | 2 +- pkg/fusionauth/Domain_dynamic_test.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/fusionauth/Client.go b/pkg/fusionauth/Client.go index 492a23b..e1a088f 100644 --- a/pkg/fusionauth/Client.go +++ b/pkg/fusionauth/Client.go @@ -1,5 +1,5 @@ /* -* Copyright (c) 2019-2025, FusionAuth, All Rights Reserved +* Copyright (c) 2019-2026, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/pkg/fusionauth/Domain.go b/pkg/fusionauth/Domain.go index 0a23d25..c544e35 100644 --- a/pkg/fusionauth/Domain.go +++ b/pkg/fusionauth/Domain.go @@ -1,5 +1,5 @@ /* -* Copyright (c) 2019-2025, FusionAuth, All Rights Reserved +* Copyright (c) 2019-2026, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/pkg/fusionauth/Domain_dynamic_test.go b/pkg/fusionauth/Domain_dynamic_test.go index 1e843ee..e31c73c 100644 --- a/pkg/fusionauth/Domain_dynamic_test.go +++ b/pkg/fusionauth/Domain_dynamic_test.go @@ -1,5 +1,5 @@ /* -* Copyright (c) 2019-2025, FusionAuth, All Rights Reserved +* Copyright (c) 2019-2026, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.