Skip to content

Latest commit

 

History

History

fake-api-jwt-json-server

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

JSONServer + JWT Auth

A Fake REST API using json-server with JWT authentication. You can find the complete tutorial here

Install

$ npm install
$ npm run api-auth

How to login?

You can login by sending a POST request to

POST http://localhost:3000/auth/login

with the following data

{
  "email": "nilson@email.com",
  "password":"nilson"
}

You should receive an access token with the following format

{
   "access_token": "<ACCESS_TOKEN>"
}

You should send this authorization with any request to the protected endpoints

Authorization: Bearer <ACCESS_TOKEN>