Skip to content

ethanliew/Webapi_JWT_Authentication

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

JWT Authentication for Asp.Net Web Api


Dependencies GitHub Issues Contributions welcome License

This is a webapi project written in visual studio and we will secure endpoint using JWT.

Basically, a JWT token look like:

<base64-encoded header>.<base64-encoded claims>.<base64-encoded signature>

JWT token has three sections:

  1. Header: JSON format which is encoded as a base64
  2. Claims: JSON format which is encoded as a base64.
  3. Signature: Created and signed based on Header and Claims which is encoded as a base64.

Testing

Get JWT


USE JWT

Dependencies

How to Use It ?

Releases

No releases published

Packages

No packages published

Languages

  • C# 91.6%
  • JavaScript 6.7%
  • CSS 1.6%
  • Classic ASP 0.1%