Skip to content

Commit 55cd775

Browse files
author
Jill Grant
authored
Update meeting-interop-swift.md
Acrolinx fixes
1 parent 34fbb38 commit 55cd775

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/communication-services/quickstarts/chat/includes/meeting-interop-swift.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Under the build settings, search for `sandbox` and set `User Script Sandboxing`
7777

7878
## Joining the meeting chat
7979

80-
A Communication Services user can join a Teams meeting as an anonymous user using the Calling SDK. Once a user has joined the Teams meeting, they can send and receive messages with other meeting attendees. The user will not have access to chat messages sent prior to joining, nor will they be able to send or receive messages when they are not in the meeting.
80+
A Communication Services user can join a Teams meeting as an anonymous user using the Calling SDK. Once a user has joined the Teams meeting, they can send and receive messages with other meeting attendees. The user won't have access to chat messages sent prior to joining, nor will they be able to send or receive messages when they aren't in the meeting.
8181
To join the meeting and start chatting, you can follow the next steps.
8282

8383
## Set up the app framework
@@ -204,11 +204,11 @@ var body: some View {
204204

205205
### Initialize the ChatClient
206206

207-
Instantiate the `ChatClient` and enable message notifications. We are using real-time notifications for receiving chat messages.
207+
Instantiate the `ChatClient` and enable message notifications. We're using real-time notifications for receiving chat messages.
208208

209209
With the main body set up, let's add the functions to handle the setup of the call and chat clients.
210210

211-
in the `onAppear` function, add the following code to initialize the `CallClient` and `ChatClient`:
211+
In the `onAppear` function, add the following code to initialize the `CallClient` and `ChatClient`:
212212

213213
```swift
214214
if let threadIdFromMeetingLink = getThreadId(from: self.meetingLink) {
@@ -452,7 +452,7 @@ class CallObserver : NSObject, CallDelegate {
452452

453453
### Leave the chat
454454

455-
When the user leaves the Team's meeting, we clear the Chat messages from the UI and hangup the call. The full code is shown below.
455+
When the user leaves the Team's meeting, we clear the Chat messages from the UI and hang up the call. The full code is shown below.
456456

457457
```swift
458458
func leaveMeeting() {
@@ -476,7 +476,7 @@ When the user leaves the Team's meeting, we clear the Chat messages from the UI
476476

477477
## Get a Teams meeting chat thread for a Communication Services user
478478

479-
The Teams meeting details can be retrieved using Graph APIs, detailed in [Graph documentation](/graph/api/onlinemeeting-createorget?tabs=http&view=graph-rest-beta&preserve-view=true). The Communication Services Calling SDK accepts a full Teams meeting link or a meeting ID. They are returned as part of the `onlineMeeting` resource, accessible under the [`joinWebUrl` property](/graph/api/resources/onlinemeeting?view=graph-rest-beta&preserve-view=true)
479+
The Teams meeting details can be retrieved using Graph APIs, detailed in [Graph documentation](/graph/api/onlinemeeting-createorget?tabs=http&view=graph-rest-beta&preserve-view=true). The Communication Services Calling SDK accepts a full Teams meeting link or a meeting ID. They're returned as part of the `onlineMeeting` resource, accessible under the [`joinWebUrl` property](/graph/api/resources/onlinemeeting?view=graph-rest-beta&preserve-view=true)
480480

481481
With the [Graph APIs](/graph/api/onlinemeeting-createorget?tabs=http&view=graph-rest-beta&preserve-view=true), you can also obtain the `threadID`. The response has a `chatInfo` object that contains the `threadID`.
482482

@@ -486,7 +486,7 @@ Run the application.
486486

487487
To join the Teams meeting, enter your Team's meeting link in the UI.
488488

489-
After you join the Team's meeting, you need to admit the user to the meeting in your Team's client. Once the user is admitted and has joined the chat, you are able to send and receive messages.
489+
After you join the Team's meeting, you need to admit the user to the meeting in your Team's client. Once the user is admitted and has joined the chat, you're able to send and receive messages.
490490

491491
:::image type="content" source="../join-teams-meeting-chat-quickstart-ios.png" alt-text="Screenshot of the completed iOS Application.":::
492492

0 commit comments

Comments
 (0)