An open API service indexing awesome lists of open source software.

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

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
```