add test to token

This commit is contained in:
2025-09-29 09:05:15 -03:00
parent 1b6e4b7b5e
commit c527fa0245
5 changed files with 58 additions and 9 deletions

View File

@@ -309,8 +309,8 @@ class IssuerParameter(rfc9207.IssuerParameter):
GRANT_TYPES_EXPIRES_IN = {
'authorization_code': 60 * 10, # 10 minutes
'refresh_token': 86_400 * 7, # 7 days
'authorization_code': 60 * 3, # 3 minutes
'refresh_token': 60 * 30, # 30 minutes
}