Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Access to XMLHttpRequest has been blocked by CORS policy in ASP.NET CORE

I tried to make connection from my side client to the API Server with ajax, but I get a error in the response : Access to XMLHttpRequest at 'https://localhost:44381/api/webinars' from origin 'http://localhost:5003' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. I tried to edit the CROS policy in the API but I still have the same error. This is my ajax code from MVC:

 $.ajax({
            url: "https://localhost:44381/api/webinars",
            type: 'POST',
            headers: {
                contentType: "application/json",
            },
            body: JSON.stringify(body),
            success: function (data) {
                console.log(data);
            },
            failure: function (err) {
                console.log(err);
            }

        });

StartUp from API:

  public IConfiguration Configuration { get; }

    // This method gets called by the runtime. Use this method to add services to the container.
    public void ConfigureServices(IServiceCollection services)
    {

        services.AddCors(options =>
        {
            options.AddPolicy("AllowMyOrigin",
            builder => builder.WithOrigins(
                "http://localhost:5003/",
                "http://apirequest.io")
                .WithMethods("POST","GET","PUT")
                .WithHeaders("*")
                );
        });
          //code
    }

   public void Configure(IApplicationBuilder app, IHostingEnvironment env)
    {
        //code
        app.UseCors("AllowMyOrigin");
        app.UseHttpsRedirection();
        app.UseMvc();
    }
}

Controller in the API:

[EnableCors("AllowMyOrigin")]

[Route("api/[controller]")]
[ApiController]
public class WebinarsController : ControllerBase
{
        // POST: api/Webinars
    [HttpPost]
    public async Task <ActionResult> PostAsync([FromBody] Item newItem)
    {     
         //code
      }
 }

Thanks for the answer.

like image 512
Julio Avatar asked Nov 07 '22 12:11

Julio


1 Answers

you should replace app.UseMvc(); with

app.UseEndpoints(endpoints =>
{
   endpoints.MapControllers();
});
like image 50
Hamdi Ch Avatar answered Nov 11 '22 07:11

Hamdi Ch