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.
26 lines
756 B
26 lines
756 B
from fastapi import Depends, FastAPI, Header, HTTPException
|
|
from typing_extensions import Annotated
|
|
|
|
|
|
async def verify_token(x_token: Annotated[str, Header()]):
|
|
if x_token != "fake-super-secret-token":
|
|
raise HTTPException(status_code=400, detail="X-Token header invalid")
|
|
|
|
|
|
async def verify_key(x_key: Annotated[str, Header()]):
|
|
if x_key != "fake-super-secret-key":
|
|
raise HTTPException(status_code=400, detail="X-Key header invalid")
|
|
return x_key
|
|
|
|
|
|
app = FastAPI(dependencies=[Depends(verify_token), Depends(verify_key)])
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items():
|
|
return [{"item": "Portal Gun"}, {"item": "Plumbus"}]
|
|
|
|
|
|
@app.get("/users/")
|
|
async def read_users():
|
|
return [{"username": "Rick"}, {"username": "Morty"}]
|
|
|