Add support for OAuth 2.0 Demonstrating Proof of Possession (DPoP)
Signed-off-by: Joe Grandja <10884212+jgrandja@users.noreply.github.com>
This commit is contained in:
+10
-1
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2022 the original author or authors.
|
||||
* Copyright 2002-2025 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -139,6 +139,15 @@ public final class OAuth2ErrorCodes {
|
||||
*/
|
||||
public static final String INVALID_REDIRECT_URI = "invalid_redirect_uri";
|
||||
|
||||
/**
|
||||
* {@code invalid_dpop_proof} - The DPoP Proof JWT is invalid.
|
||||
*
|
||||
* @since 6.5
|
||||
* @see <a href="https://datatracker.ietf.org/doc/html/rfc9449">RFC-9449 - OAuth 2.0
|
||||
* Demonstrating Proof of Possession (DPoP)</a>
|
||||
*/
|
||||
public static final String INVALID_DPOP_PROOF = "invalid_dpop_proof";
|
||||
|
||||
private OAuth2ErrorCodes() {
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user