We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57e62eb commit 015148fCopy full SHA for 015148f
README.md
@@ -134,9 +134,9 @@ local libjwt = require("resty.libjwt")
134
libjwt.validate({
135
jwks_files = {"/etc/nginx/jwks.json"},
136
validate_claims = {
137
- "iss" = {exact = "myiss"},
138
- "aud" = {one_of = {"audience1", "audience2"}},
139
- "sub" = {pattern = ".*@mycompany%.com"},
+ iss = {exact = "myiss"},
+ aud = {one_of = {"audience1", "audience2"}},
+ sub = {pattern = ".*@mycompany%.com"},
140
},
141
})
142
```
0 commit comments