Skip to content

Commit 82f4a84

Browse files
Fix issues
1 parent 0127048 commit 82f4a84

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

articles/communication-services/quickstarts/ui-library/get-started-calling-with-chat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Add calling and chat functionality
33
titleSuffix: An Azure Communication Services how-to guide
44
description: Add calling and chat functionality using the Azure Communication Services UI Library.
5-
author: pprystinka
5+
author: pavelprystinka
66

77
ms.author: pprystinka
88
ms.service: azure-communication-services

articles/communication-services/quickstarts/ui-library/includes/get-started-calling-with-chat/android.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,16 +142,15 @@ In the *app/src/main/res/layout/activity_main.xml* layout file, add the followin
142142

143143
To initialize the Call composite:
144144

145-
1. Go to `MainActivity`.
146-
2. Add the following code to initialize your composite components for calling.
145+
1. Go to `MainActivity` and update connection settings:
147146
- Replace `TEAM_MEETING_LINK` with the Teams meeting link.
148147
- Replace `ACS_ENDPOINT` with your ACS resource's endpoint.
149148
- Replace `DISPLAY_NAME` with your name.
150149
- Replace `USER_ID` with ACS user ID.
151150
- Replace `USER_ACCESS_TOKEN` with your token.
152151

153152
### Get a Teams meeting chat thread for a Communication Services user
154-
The Teams meeting details can be retrieved using Graph APIs, detailed in [Graph documentation](https://learn.microsoft.com/en-us/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](https://learn.microsoft.com/en-us/graph/api/resources/onlinemeeting?view=graph-rest-beta&preserve-view=true) property
153+
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](../../../../graph/api/resources/onlinemeeting?view=graph-rest-beta&preserve-view=true) property
155154

156155
With the Graph APIs, you can also obtain the threadID. The response has a chatInfo object that contains the threadID.
157156

articles/communication-services/quickstarts/ui-library/includes/get-started-calling-with-chat/ios.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
author: palatter
3-
ms.author: palatter
2+
author: pavelprystinka
3+
ms.author: pprystinka
44
ms.date: 10/10/2021
55
ms.topic: include
66
ms.service: azure-communication-services
@@ -36,7 +36,7 @@ In Xcode, create a new project:
3636

3737
### Install the package and dependencies
3838

39-
1. (Optional) For MacBook with M1, install, and enable [Rosetta](https://support.apple.com/en-us/HT211861) in Xcode.
39+
1. (Optional) For MacBook with M1, install, and enable [Rosetta](https://support.apple.com/HT211861) in Xcode.
4040

4141
1. In your project root directory, run `pod init` to create a Podfile. If you encounter an error, update [CocoaPods](https://guides.cocoapods.org/using/getting-started.html) to the current version.
4242

@@ -93,17 +93,15 @@ In the Xcode project, under **Build Settings**, set the **Enable Bitcode** optio
9393

9494
To initialize the composite:
9595

96-
1. Go to `ViewController`.
97-
98-
2. Add the following code to initialize your composite components for calling.
96+
1. Go to `ViewController` and update connection settings:
9997
- Replace `TEAM_MEETING_LINK` with the Teams meeting link.
10098
- Replace `ACS_ENDPOINT` with your ACS resource's endpoint.
10199
- Replace `DISPLAY_NAME` with your name.
102100
- Replace `USER_ID` with ACS user ID.
103101
- Replace `USER_ACCESS_TOKEN` with your token.
104102
105103
### Get a Teams meeting chat thread for a Communication Services user
106-
The Teams meeting details can be retrieved using Graph APIs, detailed in [Graph documentation](https://learn.microsoft.com/en-us/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](https://learn.microsoft.com/en-us/graph/api/resources/onlinemeeting?view=graph-rest-beta&preserve-view=true) property
104+
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](../../../../graph/api/resources/onlinemeeting?view=graph-rest-beta&preserve-view=true) property
107105

108106
With the Graph APIs, you can also obtain the threadID. The response has a chatInfo object that contains the threadID.
109107
```swift

0 commit comments

Comments
 (0)