[FastAPI] Header, Cookie

JeongChaeJin·2022년 7월 30일
0
  • 반드시 Header, Cookie Class로 받아야한다.
from fastapi import FastAPI, Cookie

app = FastAPI()


@app.get("/cookie")
def get_cookies(ga: str = Cookie(None)):
    return {"ga": ga}
  • cookie
from fastapi import FastAPI, Header

app = FastAPI()


@app.get("/header")
def get_headers(x_token: str = Header(None, title="토큰")):
    return {"X-Token": x_token}
  • header
  • 해당 클래스들로 받으면 알아서 잘 바꿔준다.
  • X 접두어는 Custom Header를 의미한다.
profile
OnePunchLotto

0개의 댓글