We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee61bc0 commit 84f5399Copy full SHA for 84f5399
1 file changed
spring-boot-jwt/README.md
@@ -52,12 +52,10 @@ The following API endpoints are available:
52
53
Verify the validity of a JWT token.
54
55
- Request Body:
+ Request Header:
56
57
```json
58
- {
59
- "token": "your_jwt_token_here"
60
- }
+ Authorization: Bearer <your_jwt_token_here>
61
```
62
63
Response:
@@ -97,6 +95,9 @@ The following API endpoints are available:
97
95
curl --location --request POST 'http://localhost:8080/users/tokenVerification' \
98
96
--header 'Authorization: Bearer <your_jwt_token_here>'
99
+
+ ```
100
101
102
103
#### TEST mode
0 commit comments