A Fake REST API using json-server with JWT authentication.
Implemented End-points: login,register
$ npm install
$ npm run start-auth
Might need to run
npm audit fix
You can login/register by sending a POST request to
POST http://localhost:8000/auth/login
POST http://localhost:8000/auth/register
with the following data
{
"email": "[email protected]",
"password":"admin"
}
You should receive an access token with the following format
{
"access_token": "<ACCESS_TOKEN>"
}
You should send this authorization as Header with any request to the protected endpoints
Authorization: Bearer <ACCESS_TOKEN>
Protected Endpoints
POST http://localhost:8000/locations
POST http://localhost:8000/products
POST http://localhost:8000/families
POST http://localhost:8000/transactions