12 lines
227 B
Text
12 lines
227 B
Text
POST http://localhost:5000/api/auth/login
|
|
{
|
|
"email": "test@test.com",
|
|
"password": "123123"
|
|
}
|
|
HTTP 200
|
|
[Captures]
|
|
token: jsonpath "$.token"
|
|
|
|
GET http://localhost:5000/api/auth/me
|
|
Authorization: Bearer {{token}}
|
|
HTTP 200
|