728x90
.NET Core Web API 에서 CORS를 허용하려면 startup.cs의 Configure() 메서드를 다음과 같이 수정합니다.
app.UseCors(options => options.AllowAnyOrigin());
...
app.UseMvc();
특정 URL에 대한 적용은 WithOrigins() 메서드를 사용합니다.
app.UseCors(options => options.WithOrigins("http://---"));
또한 GET이나 POST에 한정적으로 CORS를 적용하는건 WithMethods() 로 설정할 수 있습니다.
app.UseCors(options => options.AllowAnyOrigins().WithMethods("GET"));
728x90
'.NET > ASP.NET' 카테고리의 다른 글
[ASP.NET Core] IIS 호스팅 (0) | 2021.03.30 |
---|---|
[ASP.NET Core Web API] Action Method - 응답 (0) | 2021.03.26 |
[ASP.NET Core Web API] Action Method - 요청 (2) | 2021.03.25 |
[ASP.NET Core Web API] 프로젝트및 Controller 생성 (0) | 2021.03.25 |
[ASP.NET Core Web API] Swagger와 API 명세 (0) | 2021.03.25 |