-
Asp Net Core Web Api카테고리 없음 2020. 2. 14. 00:06
Tutorial built with ASP.NET Core 2.2In this tutorial we'll go through a simple example of how to implement Basic HTTP authentication in an ASP.NET Core 2.2 API with C#.The example API has just two endpoints/routes to demonstrate authenticating with basic http authentication and accessing a restricted route:. /users/authenticate - public route that accepts HTTP POST requests containing the username and password in the body. If the username and password are correct then the user details are returned. /users - secure route that accepts HTTP GET requests and returns a list of all the users in the application if the HTTP Authorization header contains valid basic authentication credentials.
Asp Net Core Web Api Authentication
Web Api For Beginners
If there are no basic auth credentials or the credentials are invalid then a 401 Unauthorized response is returned.The tutorial project is available on GitHub at.Update History:. 18 Jan 2019 - Updated to ASP.NET Core 2.2. For details of the exact changes that were required to update from ASP.NET Core 2.1 to 2.2 see on GitHub. 08 Sep 2018 - Built with ASP.NET Core 2.1.