Skip to content

Commit 6be4dae

Browse files
committed
edit pass: comm-services-samples-tutorials
1 parent 875123a commit 6be4dae

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

articles/communication-services/how-tos/call-automation/actions-for-call-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Call Automation supports other actions to manage call media and recording that h
2323
- Read the Call Automation [concepts article](../../concepts/call-automation/call-automation.md#call-actions) that describes the action-event programming model and event callbacks.
2424
- Learn about the [user identifiers](../../concepts/identifiers.md#the-communicationidentifier-type) like `CommunicationUserIdentifier` and `PhoneNumberIdentifier` that are used in this article.
2525

26-
For all the code samples, `client` is the `CallAutomationClient` object that you can create, as shown, and `callConnection` is the `CallConnection` object that you obtain from the `Answer` or `CreateCall` response. You can also obtain it from callback events your application receives.
26+
For all the code samples, `client` is the `CallAutomationClient` object that you can create, as shown, and `callConnection` is the `CallConnection` object that you obtain from the `Answer` or `CreateCall` response. You can also obtain it from callback events that your application receives.
2727

2828
## [csharp](#tab/csharp)
2929

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure Communication Services Call Automation how-to for securing webhook endpoint
2+
title: Azure Communication Services Call Automation How-to for Securing Webhook Endpoint
33
titleSuffix: An Azure Communication Services how-to document
44
description: The article shows how to secure the delivery of incoming calls and callback events.
55
author: fanche
@@ -49,11 +49,10 @@ A common way that you can improve this security is by implementing an API key me
4949

5050
### Authentication token in a WebSocket header
5151

52-
Each WebSocket connection request made by Call Automation now includes a signed JWT in the Authentication header. This token is validated by using standard OIDC JWT validation methods:
52+
Each WebSocket connection request made by Call Automation now includes a signed JWT in the authentication header. This token is validated by using standard OIDC JWT validation methods:
5353

5454
- The JWT has a lifetime of 24 hours.
5555
- A new token is generated for each connection request to your WebSocket server.
56-
- More information is available in the official documentation: Secure webhook endpoint – Azure Communication Services.
5756

5857
::: zone pivot="programming-language-csharp"
5958
[!INCLUDE [Secure websocket with .NET](./includes/secure-websocket-csharp.md)]
@@ -69,7 +68,7 @@ Each WebSocket connection request made by Call Automation now includes a signed
6968

7069
## IP range
7170

72-
Another way that you can secure your WebSocket connections is by allowing only Microsoft connections from certain IP ranges.
71+
Another way that you can secure your WebSocket connections is to allow only Microsoft connections from certain IP ranges.
7372

7473
| Category | IP ranges or FQDN | Ports |
7574
| :-- | :-- | :-- |

0 commit comments

Comments
 (0)