pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
431 B
20 lines
431 B
from typing import Union
|
|
|
|
from fastapi import Cookie, FastAPI
|
|
from pydantic import BaseModel
|
|
from typing_extensions import Annotated
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Cookies(BaseModel):
|
|
model_config = {"extra": "forbid"}
|
|
|
|
session_id: str
|
|
fatebook_tracker: Union[str, None] = None
|
|
googall_tracker: Union[str, None] = None
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items(cookies: Annotated[Cookies, Cookie()]):
|
|
return cookies
|
|
|