You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Backend/token_service/README.md
+16-3
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,24 @@ The API runs on port 8000 and exposed to 8001.
16
16
## Tutorial to use the token_service
17
17
18
18
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
+
20
27
-`auth/token/gen-tokens/` - This endpoint is used to generate the refresh and access tokens.
21
28
-`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
+
```
24
37
## The UserTokens model
25
38
26
39
The UserTokens model is used to store the refresh and access tokens. The UserTokens model has the following fields:
0 commit comments