DEV Community

Discussion on: Exploring ASP.NET Web API (.NET 5)

Collapse
 
dyagzy profile image
dyagzy • Edited

Thank you always for well written apt tutorials. Reading your article made me better understand how it all works on. Net 5 especially when you registered the Cors. Moreover, what is the purpose of registering the Cors? I will code along all the above and revert if I have bugs. Can you write on authentication, authorization and Middlewares please?

I also noticed that you didn't talk about how you came about the ILogger object and we didn't use it in the application! Why is this so?

Collapse
 
jioophoenix profile image
John Ojo

Hi, thanks for reading the article and leaving a comment.
If you plan to consume your ASP.NET Core API from another project you must enable CORS in the API project. docs.microsoft.com/en-us/aspnet/we.... should help you understand what CORS is all about.

docs.microsoft.com/en-us/aspnet/co... will help with understanding how logging works in ASP.NET Core