mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-28 12:47:09 -05:00
9 lines
266 B
Python
9 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
|