Cấu hình CORS trong ASP.NET Web API và MVC
1. Cấu hình CORS cho ASP.NET Web API
Đầu tiên, cài đặt gói NuGet cần thiết:
Install-Package Microsoft.AspNet.WebApi.Cors
Sau đó, cấu hình trong lớp WebApiConfig:
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
var allowedOrigins = ConfigurationManager.AppSettings["AllowedCorsOrigins"] ...
Đăng vào ngày 18 tháng 6 lúc 16:11