How would you handle cross-origin requests (CORS) in a REST API?
- Configure CORS policy on the server.
- Allow specific origins, headers, and methods.
👉 Example in ASP.NET Core:
services.AddCors(options =>
options.AddPolicy("MyPolicy",
builder => builder.WithOrigins("
.AllowAnyHeader()
.AllowAnyMethod());
});
- Apply with app.UseCors("MyPolicy");.