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
Enhance audience check to verify against regular expressions (#398)
* Enhance audience check to verify against regular expressions
* Enhance audience check to verify against regular expressions
* Adapted README to have a showcase of the new RegExp-check for the audience validation
Copy file name to clipboardexpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,7 @@ As mentioned in [this comment](https://github.com/auth0/node-jsonwebtoken/issues
120
120
`options`
121
121
122
122
*`algorithms`: List of strings with the names of the allowed algorithms. For instance, `["HS256", "HS384"]`.
123
-
*`audience`: if you want to check audience (`aud`), provide a value here
123
+
*`audience`: if you want to check audience (`aud`), provide a value here. The audience can be checked against a string, a regular expression or a list of strings and/or regular expressions. Eg: `"urn:foo"`, `/urn:f[o]{2}/`, `[/urn:f[o]{2}/, "urn:bar"]`
124
124
*`issuer` (optional): string or array of strings of valid values for the `iss` field.
125
125
*`ignoreExpiration`: if `true` do not validate the expiration of the token.
0 commit comments