Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 519 Bytes

README.md

File metadata and controls

4 lines (3 loc) · 519 Bytes

User Microservice

This repository contains boilerplate code for setting up a secure users backend microservice in Flask. It utilizes Json Web Tokens (JWT) to establish permissions for requests to specified backend endpoints. The use of HTTP only cookies prevents XSS attacks and we use CSRF tokens to prevent CSRF attacks.

See this great video on authentication using JWTs for a great overview of its use in a microservice architecture.