Skip to content

Commit 5a88255

Browse files
Pooria ToofPooria Toof
Pooria Toof
authored and
Pooria Toof
committed
updated readme for verify-token and refresh-token
1 parent 0019584 commit 5a88255

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

Backend/token_service/README.md

+16-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,24 @@ The API runs on port 8000 and exposed to 8001.
1616
## Tutorial to use the token_service
1717

1818
There are three endpoints in the token_service. The endpoints are:
19-
- `auth/token/refresh/` - This endpoint is used to refresh the access token.
19+
- `auth/token/refresh/` - This endpoint is used to refresh the access token. to refresh the access token you need to send a request to this endpoint with the refresh token in the request body. The request will be like this:
20+
```json
21+
{
22+
"id": "user_id",
23+
"refresh": "your refresh token"
24+
}
25+
```
26+
2027
- `auth/token/gen-tokens/` - This endpoint is used to generate the refresh and access tokens.
2128
- `auth/token/invalidate-tokens/` - This endpoint is used by user-service logout or delete user to invalidate the refresh and access tokens.
22-
- `auth/token/validate-token/` - This endpoint is used to validate the access token.
23-
29+
- `auth/token/validate-token/` - This endpoint is used to validate the access token. If you send a request from frontend to this API your request will be like this:
30+
```json
31+
{
32+
"id": "user_id",
33+
"access": "your access token",
34+
"is_frontend": true
35+
}
36+
```
2437
## The UserTokens model
2538

2639
The UserTokens model is used to store the refresh and access tokens. The UserTokens model has the following fields:

0 commit comments

Comments
 (0)