25 lines
409 B
HTTP
25 lines
409 B
HTTP
### Authorization by token, part 1. Retrieve and save token.
|
|
POST http://localhost:8080/api/v1/login
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"user": "user",
|
|
"password": "1234"
|
|
}
|
|
|
|
> {% client.global.set("auth_token", response.body.token); %}
|
|
|
|
###
|
|
|
|
## Register
|
|
|
|
POST http://localhost:8080/api/v1/register
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"username": "user3",
|
|
"password": "1234",
|
|
"email": "3@knt.li"
|
|
}
|
|
|
|
###
|