-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vinicios Neves
committed
Sep 4, 2022
0 parents
commit 1c4603a
Showing
7 changed files
with
3,090 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# JSONServer + JWT Auth | ||
|
||
Uma API Rest mockada, utilizando json-server e JWT. | ||
|
||
|
||
End-points implementados: login,registrar,pedidos | ||
|
||
## Instalação | ||
|
||
```bash | ||
$ npm install | ||
$ npm run start-auth | ||
``` | ||
|
||
## Como se registrar? | ||
|
||
Você pode fazer isso efetuando uma requisição post para: | ||
|
||
``` | ||
POST http://localhost:8000/public/registrar | ||
``` | ||
|
||
Com os seguintes dados: | ||
|
||
|
||
``` | ||
{ | ||
"nome": "vinicios neves", | ||
"email": "[email protected]", | ||
"senha": "123456", | ||
"endereco": "Rua Vergueiro, 3185", | ||
"complemento": "Vila Mariana", | ||
"cep": "04101-300" | ||
} | ||
``` | ||
|
||
Repare que o e-mail é um campo único e usuários com e-mails duplicados não serão persistidos. | ||
|
||
## Como fazer login? | ||
|
||
Você pode fazer isso efetuando uma requisição post para: | ||
|
||
``` | ||
POST http://localhost:8000/public/login | ||
``` | ||
|
||
Com os seguintes dados: | ||
|
||
|
||
``` | ||
{ | ||
"email": "[email protected]", | ||
"senha":"123456" | ||
} | ||
``` | ||
|
||
Você vai receber um token no seguinte formato: | ||
|
||
``` | ||
{ | ||
"access_token": "<ACCESS_TOKEN>", | ||
"user": { ... dados do usuário ... } | ||
} | ||
``` | ||
|
||
## Autenticar próximas requests? | ||
|
||
E então, adicionar este mesmo token ao header das próximas requisições: | ||
|
||
``` | ||
Authorization: Bearer <ACCESS_TOKEN> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"pedidos": [ | ||
{ | ||
"id": 89019041, | ||
"data" : "2022-05-26", | ||
"entrega" : "2022-05-26", | ||
"total": 29.9 | ||
}, | ||
{ | ||
"id": 89019963, | ||
"data" : "2022-07-26", | ||
"entrega" : "2022-08-01", | ||
"total": 58.8 | ||
} | ||
] | ||
} |
Oops, something went wrong.