Browse Source

Merge 558f1385a8 into 1d434dec47

pull/11460/merge
Salar Nosrati-Ershad 4 days ago
committed by GitHub
parent
commit
3003949f99
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 15
      fastapi/security/oauth2.py

15
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,

Loading…
Cancel
Save