mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 18:46:40 +00:00
8 lines
266 B
Python
8 lines
266 B
Python
from typing import Tuple
|
|
|
|
|
|
def get_authorization_scheme_param(authorization_header_value: str) -> Tuple[str, str]:
|
|
if not authorization_header_value:
|
|
return "", ""
|
|
scheme, _, param = authorization_header_value.partition(" ")
|
|
return scheme, param
|