
FastAPI ErrorHandling 과 CORS (2) - 대안 파악
·
탐구 생활/FastAPI CORS
Starlette 와 FastAPI 의 ISSUE(link,link) 에서는 다음의 해결법이 논의 되었습니다.논의된 해결법1. FastAPI 앱을 CORSMiddleware로 감싸기from: thomasleveilfrom starlette.applications import Starlettefrom starlette.authentication import AuthenticationBackend, AuthenticationErrorfrom starlette.exceptions import HTTPExceptionfrom starlette.middleware.authentication import AuthenticationMiddlewarefrom starlette.middleware.cors import ..