Protecting API access with JWT

A common use case for APIs is to provide authentication middleware, which will let a client make authorized requests to your APIs. Generally, your client performs some sort of authentication, and a session token is issued. Recently, JWT (JSON Web Tokens) are a popular method of providing a session token with an expire time, which doesn’t require some sort of storage to perform validation.

This is a continuation of a previous article. If you’re new, you should read Handling HTTP r...

 •  0 comments  •  flag
Share on Twitter
Published on May 08, 2018 11:00
No comments have been added yet.