clone the Repository
git clone https://github.com/maneeshsagar/auth-service.git
run the docker compose file by below command
cd auth-service
docker-compose up --build -d
- Sign Up
curl --location 'localhost:8080/auth/signup' \
--header 'Content-Type: application/json' \
--data-raw '{
"name":"Maneesh Sagar",
"email":"aks@abc.com",
"password":"ps"
}'
- Sign In to get the tokens
curl --location 'localhost:8080/auth/signin' \
--header 'Content-Type: application/json' \
--data-raw '{
"email":"aks@abc.com",
"password":"ps"
}'
- Get the Profile of the user using access token (add the access token which you received in the signin repsonse)
curl --location 'localhost:8080/v1/profile' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoyLCJleHAiOjE3MzQ3NzQ2NDEsImlhdCI6MTczNDc3Mzc0MX0.sitjjQdhq4_dmWV2IJnP1s7AACcj2j-Ha0CYi1YHgpg'
- If access token is expired then use this one to get the new token based on the refresh token
curl --location 'localhost:8080/auth/refresh' \
--header 'Content-Type: application/json' \
--data '{
"refreshToken": "GOvnii0sVw9tWx5ba4zdQO7ze6d5lleJ"
}'
import the Auth-Service.postman_collection.json file from the auth-service folder into the postman
and hit the apis