DEV Community

Discussion on: How can we integrate Flutter with .Net core web API | Part-1: Building Back-end Web service using .Net core.

Collapse
 
imned profile image
imned

Listing of file StartUp.cs contains an error. According to documentation [0] app.UseCors(AllowedOrigin); should follow this order:

app.UseRouting();
app.UseCors(AllowedOrigin);
app.UseAuthentication();

[0]docs.microsoft.com/en-us/aspnet/co...