Skip to content

Commit

Permalink
Update EXAMPLES.md to fix variable usage
Browse files Browse the repository at this point in the history
  • Loading branch information
deep-lyra authored Jul 17, 2024
1 parent 8c88c83 commit a1c0eea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EXAMPLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ To verify an ID Token that is signed using the RS256 signing algorithm, you will

```java
JwkProvider provider = new JwkProviderBuilder("https://your-domain.auth0.com").build();
SignatureVerifier sigVerifier = SignatureVerifier.forRS256(new PublicKeyProvider() {
SignatureVerifier signatureVerifier = SignatureVerifier.forRS256(new PublicKeyProvider() {
@Override
public RSAPublicKey getPublicKeyById(String keyId) throws PublicKeyProviderException {
try {
Expand Down

0 comments on commit a1c0eea

Please sign in to comment.