Skip to content

viniciosneves/fake-rest-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSONServer + JWT Auth

Uma API Rest mockada, utilizando json-server e JWT.

End-points implementados: login,register,gerentes

Instalação

$ npm install
$ npm run start-auth

Talvez seja necessário:

npm audit fix

Como fazer login/registrar-se?

Você pode fazer isso efetuando uma requisição post para:

POST http://localhost:8000/auth/login
POST http://localhost:8000/auth/register

Com os seguintes dados:

{
  "email": "[email protected]",
  "senha":"123456"
}

Você vai receber um token no seguinte formato:

{
   "access_token": "<ACCESS_TOKEN>"
}

E então, adicionar este mesmo token ao header das próximas requisições:

Authorization: Bearer <ACCESS_TOKEN>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published