An open API service indexing awesome lists of open source software.

https://github.com/v1adhope/auth-service


https://github.com/v1adhope/auth-service

bcrypt docker docker-compose encryption-decryption hr-tasks jwt taskfile testing

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# Endpoints

## Generate tokens

POST /tokens/{guid}

```json
{
"accessToken": "",
"refreshToken": ""
}
```
resp

## Refresh tokens

POST /tokens/refresh

```json
{
"accessToken": "",
"refreshToken": ""
}
```
req body

```json
{
"accessToken": "",
"refreshToken": ""
}
```
resp