We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e234db commit 2595999Copy full SHA for 2595999
1 file changed
README.md
@@ -10,7 +10,8 @@ This was developed against `draft-ietf-oauth-json-web-token-08`.
10
public class Application {
11
public static void main (String [] args) {
12
try {
13
- Map<String,String> decodedPayload = new JWTVerifier("secret", "audience").verify("my-token");
+ Map<String,String> decodedPayload =
14
+ new JWTVerifier("secret", "audience").verify("my-token");
15
16
// Get custom fields from decoded Payload
17
System.out.println(decodedPayload.get("name"));
0 commit comments