Skip to content

Commit 23ffccc

Browse files
committed
review comments
1 parent 9b6acc9 commit 23ffccc

11 files changed

+30
-30
lines changed

articles/communication-services/quickstarts/advanced-messaging/whatsapp/handle-advanced-messaging-events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Handle Advanced Messaging events
33
titleSuffix: Azure Communication Services
4-
description: "This article dscribes how to subscribe to Advanced Messaging for WhatsApp events."
4+
description: "This article describes how to subscribe to Advanced Messaging for WhatsApp events."
55
author: shamkh
66
manager: camilo.ramirez
77
services: azure-communication-services
@@ -25,7 +25,7 @@ Azure Communication Services enables you to send and receive WhatsApp messages u
2525

2626
## About Event Grid
2727

28-
[Event Grid](../../../../event-grid/overview.md) is a cloud-based eventing service. This article describes how to subscribe to [communication service events](../../../../event-grid/event-schema-communication-services.md), and trigger an event to view the result. Typically, you send events to an endpoint that processes the event data and takes actions. In this article, we send the events to a web app that collects and displays the messages.
28+
[Event Grid](../../../../event-grid/overview.md) is a cloud-based eventing service. This article describes how to subscribe to [communication service events](../../../../event-grid/event-schema-communication-services.md) and trigger an event to view the result. Typically, you send events to an endpoint that processes the event data and takes actions. In this article, we send the events to a web app that collects and displays the messages.
2929

3030
## Set up Event Grid Viewer
3131

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/download-media/download-media-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,6 @@ if __name__ == '__main__':
135135
messages.download_media()
136136
```
137137

138-
### Other Samples
138+
### Other samples
139139

140140
You can review and download other sample codes for Python Messages SDK on [GitHub](https://github.com/Azure-Samples/communication-services-python-quickstarts/tree/main/messages-quickstart).

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/get-started/messages-get-started-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The Messages SDK enables Contoso to send media (image, video, audio, or document
7777
> As of SDK version 1.1.0, `MediaNotificationContent` is being deprecated for images. We encourage you to use `ImageNotificationContent` to send images. Explore other content-specific classes for other media types like `DocumentNotificationContent`, `VideoNotificationContent`, and `AudioNotificationContent`.
7878
7979
> [!IMPORTANT]
80-
> To send a image message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
80+
> To send an image message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
8181
8282
Assemble and send the image message:
8383

@@ -129,7 +129,7 @@ The Messages SDK enables Contoso to send media (image, video, audio, or document
129129
- URL of the Audio media.
130130

131131
> [!IMPORTANT]
132-
> To send a audio message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
132+
> To send an audio message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
133133
134134
Assemble and send the audio message:
135135

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/get-started/messages-quickstart-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,6 +476,6 @@ if __name__ == '__main__':
476476
messages.send_video_message()
477477
```
478478

479-
### Other Samples
479+
### Other samples
480480

481481
You can review and download other sample codes for Python Messages SDK on [GitHub](https://github.com/Azure-Samples/communication-services-python-quickstarts/tree/main/messages-quickstart).

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/interactive/messages-quickstart-interactive-messages-java.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The Messages SDK enables Contoso to send interactive WhatsApp messages, when ini
7474
- Interactive message to be sent.
7575

7676
> [!IMPORTANT]
77-
> To send a interactive message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
77+
> To send an interactive message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
7878
7979
In this example, the business sends an interactive shipping options message to the user.
8080

@@ -104,7 +104,7 @@ interactiveMessage.setHeader(new TextMessageContent("Shipping Options"));
104104

105105
InteractiveNotificationContent interactiveMessageContent new InteractiveNotificationContent("<CHANNEL_ID>", recipients, interactiveMessage);
106106

107-
// Send a interactive message
107+
// Send an interactive message
108108
SendMessageResult textMessageResult = notificationClient.send(interactiveMessageContent);
109109

110110
// Process result
@@ -121,9 +121,9 @@ The Messages SDK enables Contoso to send interactive WhatsApp messages, when ini
121121
- Interactive message to be sent.
122122

123123
> [!IMPORTANT]
124-
> To send a interactive message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
124+
> To send an interactive message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
125125
126-
In this example, the business sends a interactive reply button message to the user.
126+
In this example, the business sends an interactive reply button message to the user.
127127

128128
```java
129129
// Assemble interactive reply button
@@ -135,7 +135,7 @@ InteractiveMessage interactiveMessage = new InteractiveMessage(new TextMessageCo
135135

136136
InteractiveNotificationContent interactiveMessageContent new InteractiveNotificationContent("<CHANNEL_ID>", recipients, interactiveMessage);
137137

138-
// Send a interactive message
138+
// Send an interactive message
139139
SendMessageResult textMessageResult = notificationClient.send(interactiveMessageContent);
140140

141141
// Process result
@@ -152,7 +152,7 @@ The Messages SDK enables Contoso to send interactive WhatsApp messages, when ini
152152
- Interactive message to be sent.
153153

154154
> [!IMPORTANT]
155-
> To send a interactive message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
155+
> To send an interactive message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
156156
157157
In this example, the business sends a click to a link message to the user.
158158

@@ -164,7 +164,7 @@ interactiveMessage.setFooter(new TextMessageContent("Intergalactic New Ltd"));
164164

165165
InteractiveNotificationContent interactiveMessageContent new InteractiveNotificationContent("<CHANNEL_ID>", recipients, interactiveMessage);
166166

167-
// Send a interactive message
167+
// Send an interactive message
168168
SendMessageResult textMessageResult = notificationClient.send(interactiveMessageContent);
169169

170170
// Process result

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/interactive/messages-quickstart-interactive-messages-javascript.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ The Messages SDK enables Contoso to send interactive WhatsApp messages, when ini
7070
- Interactive message to be sent.
7171

7272
> [!IMPORTANT]
73-
> To send a interactive message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
73+
> To send an interactive message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
7474
7575
In this example, the business sends an interactive shipping options message to the user.
7676

7777
```javascript
7878
/**
79-
* @summary Send a interactive message
79+
* @summary Send an interactive message
8080
*/
8181

8282
const { AzureKeyCredential } = require("@azure/core-auth");
@@ -173,13 +173,13 @@ The Messages SDK enables Contoso to send interactive WhatsApp messages, when ini
173173
- Interactive message to be sent.
174174

175175
> [!IMPORTANT]
176-
> To send a interactive message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
176+
> To send an interactive message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
177177
178178
In this example, the business sends a reply button message to the user.
179179

180180
```javascript
181181
/**
182-
* @summary Send a interactive message
182+
* @summary Send an interactive message
183183
*/
184184

185185
const { AzureKeyCredential } = require("@azure/core-auth");
@@ -253,13 +253,13 @@ The Messages SDK enables Contoso to send interactive WhatsApp messages, when ini
253253
- Interactive message to be sent.
254254

255255
> [!IMPORTANT]
256-
> To send a interactive message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
256+
> To send an interactive message to a WhatsApp user, the WhatsApp user must first send a message to the WhatsApp Business Account. For more information, see [Start sending messages between business and WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
257257
258258
In this example, the business sends a click to a link message to the user.
259259

260260
```javascript
261261
/**
262-
* @summary Send a interactive message
262+
* @summary Send an interactive message
263263
*/
264264

265265
const { AzureKeyCredential } = require("@azure/core-auth");

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/interactive/messages-quickstart-interactive-messages-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,6 @@ if __name__ == '__main__':
425425
messages.send_whatapp_click_to_action_message()
426426
```
427427

428-
### Other Samples
428+
### Other samples
429429

430430
You can review and download other sample codes for Python Messages SDK on [GitHub](https://github.com/Azure-Samples/communication-services-python-quickstarts/tree/main/messages-quickstart).

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/reactions/messages-quickstart-reaction-messages-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ms.author: armohamed
2323

2424
## Object model
2525

26-
The following classes and interfaces handle some of the major features of the Azure Communication Services Messages SDK for Javascript.
26+
The following classes and interfaces handle some of the major features of the Azure Communication Services Messages SDK for JavaScript.
2727

2828
| Class Name | Description |
2929
| --- | --- |

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/reactions/messages-quickstart-reaction-messages-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,6 @@ if __name__ == '__main__':
154154
messages.send_reaction_message()
155155
```
156156

157-
### Other Samples
157+
### Other samples
158158

159159
You can review and download other sample codes for Python Messages SDK on [GitHub](https://github.com/Azure-Samples/communication-services-python-quickstarts/tree/main/messages-quickstart).

0 commit comments

Comments
 (0)