Skip to content

Commit 76ae518

Browse files
committed
Increase request_uri expiry for OAuth2 Pushed Authorization Request
Closes gh-2024
1 parent c4e8427 commit 76ae518

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/authentication/OAuth2PushedAuthorizationRequestUri.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ final class OAuth2PushedAuthorizationRequestUri {
4444
private Instant expiresAt;
4545

4646
static OAuth2PushedAuthorizationRequestUri create() {
47-
return create(Instant.now().plusSeconds(30));
47+
return create(Instant.now().plusSeconds(300));
4848
}
4949

5050
static OAuth2PushedAuthorizationRequestUri create(Instant expiresAt) {

0 commit comments

Comments
 (0)