Salar Nosrati-Ershad
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
14 additions and
1 deletions
-
fastapi/security/oauth2.py
|
|
@ -457,11 +457,24 @@ class OAuth2PasswordBearer(OAuth2): |
|
|
|
""" |
|
|
|
), |
|
|
|
] = True, |
|
|
|
refreshUrl: Annotated[ |
|
|
|
Optional[str], |
|
|
|
Doc( |
|
|
|
""" |
|
|
|
The URL to refresh the token and obtain a new one. |
|
|
|
""" |
|
|
|
), |
|
|
|
] = None, |
|
|
|
): |
|
|
|
if not scopes: |
|
|
|
scopes = {} |
|
|
|
flows = OAuthFlowsModel( |
|
|
|
password=cast(Any, {"tokenUrl": tokenUrl, "scopes": scopes}) |
|
|
|
password=cast( |
|
|
|
Any, |
|
|
|
{"tokenUrl": tokenUrl, "refreshUrl": refreshUrl, "scopes": scopes} |
|
|
|
if refreshUrl |
|
|
|
else {"tokenUrl": tokenUrl, "scopes": scopes}, |
|
|
|
) |
|
|
|
) |
|
|
|
super().__init__( |
|
|
|
flows=flows, |
|
|
|