Skip to content

Commit

Permalink
Add docs for multiple client IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
sergioisidoro authored and stefanprokopdev committed Oct 29, 2023
1 parent 6e13dcd commit e27c107
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import verifyAppleToken from "verify-apple-id-token";

const jwtClaims = await verifyAppleToken({
idToken: "yourIdToken",
clientId: "yourAppleClientId",
clientId: "yourAppleClientId", // or ["app1ClientId", "app2ClientId"]
nonce: "nonce", // optional
});

Expand All @@ -49,7 +49,7 @@ const verifyAppleToken = require("verify-apple-id-token").default;

const jwtClaims = await verifyAppleToken({
idToken: "yourIdToken",
clientId: "yourAppleClientId",
clientId: "yourAppleClientId", // or ["app1ClientId", "app2ClientId"]
nonce: "nonce", // optional
});
```
Expand Down

0 comments on commit e27c107

Please sign in to comment.