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.
17 lines
343 B
17 lines
343 B
from fastapi import Cookie, FastAPI
|
|
from pydantic import BaseModel
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Cookies(BaseModel):
|
|
model_config = {"extra": "forbid"}
|
|
|
|
session_id: str
|
|
fatebook_tracker: str | None = None
|
|
googall_tracker: str | None = None
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items(cookies: Cookies = Cookie()):
|
|
return cookies
|
|
|