Skip to content

Commit 3c7b8d5

Browse files
committed
Fix typo
JWT token -> JWT
1 parent 80dec49 commit 3c7b8d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/communication-services/how-tos/call-automation/includes/secure-webhook-endpoint-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ npm install express jwks-rsa jsonwebtoken
2626
```
2727

2828
3. Configure your application to validate the JWT and the configuration of your Azure Communication Services resource. You need the `audience` values as it is present in the JWT payload.
29-
4. Validate the issuer, audience and the JWT token.
29+
4. Validate the issuer, audience and the JWT.
3030
- The audience is your Azure Communication Services resource ID you used to set up your Call Automation client. Refer [here](../../../quickstarts/voice-video-calling/get-resource-id.md) about how to get it.
31-
- The JSON Web Key Set (JWKS) endpoint in the OpenId configuration contains the keys used to validate the JWT token. When the signature is valid and the token hasn't expired (within 5 minutes of generation), the client can use the token for authorization.
31+
- The JSON Web Key Set (JWKS) endpoint in the OpenId configuration contains the keys used to validate the JWT. When the signature is valid and the token hasn't expired (within 5 minutes of generation), the client can use the token for authorization.
3232

3333
This sample code demonstrates how to configure OIDC client to validate webhook payload using JWT
3434

0 commit comments

Comments
 (0)