https://github.com/arnab-developer/apiauthentication
ASP.NET authentication
https://github.com/arnab-developer/apiauthentication
Last synced: 9 months ago
JSON representation
ASP.NET authentication
- Host: GitHub
- URL: https://github.com/arnab-developer/apiauthentication
- Owner: Arnab-Developer
- License: mit
- Created: 2020-03-10T06:29:34.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-11-17T04:38:32.000Z (over 2 years ago)
- Last Synced: 2025-10-12T14:03:39.700Z (9 months ago)
- Language: C#
- Homepage:
- Size: 1.47 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# ASP.NET authentication
ASP.NET authentication example.
```mermaid
flowchart LR
browser[Web Browser]
webapp[Web Application]
api[Web API]
identityServer[Identity Server]
browser -- Cookie based auth --> webapp
webapp -- Request token --> identityServer
identityServer -- Token --> webapp
webapp -- Token based auth --> api
api -- Registration --> identityServer
identityServer --> api
```