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
- Host: GitHub
- URL: https://github.com/v1adhope/auth-service
- Owner: v1adhope
- Created: 2024-08-22T08:50:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-26T07:57:20.000Z (over 1 year ago)
- Last Synced: 2025-01-22T03:27:17.501Z (12 months ago)
- Topics: bcrypt, docker, docker-compose, encryption-decryption, hr-tasks, jwt, taskfile, testing
- Language: Go
- Homepage:
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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