FastAPI CORS 설정

2024. 4. 1. 00:23파이썬/FastAPI

https://developer-itspjc.tistory.com/25

 

Fast API 에서 CORS 에러 해결하기

웹개발을 하다보면 가장 골치아픈 것 중 하나가 CORS (Cross-Origin Resource Sharing) 에러이다. 특히 높은 수준의 보안을 요구하는 Chrome 의 경우에는 원천적으로 CORS를 허용하지 않기 때문에 정말 많은

developer-itspjc.tistory.com

from starlette.middleware.cors import CORSMiddleware

app = FastAPI()

origins = [
    "http://localhost:{port}"
]

app.add_middleware(
    CORSMiddleware,
    allow_origins=origins,
    allow_credentials=True,
    allow_methods=["*"],
    allow_headers=["*"]
)

'파이썬 > FastAPI' 카테고리의 다른 글

FastAPI 이미지 만들기  (1) 2024.09.16
파일 다운로드 설정  (0) 2024.06.28
FastAPI post 설정  (1) 2024.03.16
FastAPI 설정  (0) 2024.03.16