You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/communication-services/quickstarts/ui-library/includes/get-started-call/android.md
+31-5Lines changed: 31 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -311,9 +311,21 @@ CallCompositeRemoteOptions remoteOptions = new CallCompositeRemoteOptions(
311
311
```
312
312
---
313
313
314
-
### Set up a Teams meeting
314
+
### Join a Teams meeting
315
315
316
-
To set up a Microsoft Teams meeting, initialize a `CallCompositeTeamsMeetingLinkLocator` and supply it to the `CallCompositeRemoteOptions` object.
316
+
You can join to a Teams meeting using two mechanisms:
317
+
318
+
- Teams meeting URL or Teams meetiong short URL
319
+
- Teams Meeting ID and Passcode
320
+
321
+
The Teams meeting link can be retrieved using Graph APIs, which is detailed in [Graph documentation](/graph/api/onlinemeeting-createorget?tabs=http&view=graph-rest-beta&preserve-view=true).
322
+
323
+
The Communication Services Calling SDK accepts a full Teams meeting link. This link is returned as part of the `onlineMeeting` resource, accessible under the [`joinWebUrl` property](/graph/api/resources/onlinemeeting?view=graph-rest-beta&preserve-view=true)
324
+
You can also get the required meeting information from the **Join Meeting** URL in the Teams meeting invite itself.
325
+
326
+
#### Join via Teams meeting URL
327
+
328
+
To join a Microsoft Teams meeting, initialize a `CallCompositeTeamsMeetingLinkLocator` and supply it to the `CallCompositeRemoteOptions` object.
317
329
318
330
#### [Kotlin](#tab/kotlin)
319
331
@@ -338,11 +350,25 @@ CallCompositeRemoteOptions remoteOptions = new CallCompositeRemoteOptions(
338
350
"DISPLAY_NAME");
339
351
```
340
352
341
-
#### Get a Microsoft Teams meeting link
353
+
---
354
+
355
+
#### Join via Teams Meeting ID and Passcode
356
+
357
+
The `TeamsMeetingIdLocator` locates a meeting using a meeting ID and passcode. These can be found under a Teams meeting's join info.
358
+
A Teams meeting ID will be 12 characters long and will consist of numeric digits grouped in threes (i.e. `000 000 000 000`).
359
+
A passcode will consist of 6 alphabet characters (i.e. `aBcDeF`). The passcode is case sensitive.
342
360
343
-
You can get a Microsoft Teams meeting link by using Graph APIs. This process is detailed in [Graph documentation](/graph/api/onlinemeeting-createorget?preserve-view=true&tabs=http&view=graph-rest-beta).
361
+
#### [Kotlin](#tab/kotlin)
362
+
363
+
```kotlin
364
+
// HELP
365
+
```
344
366
345
-
The Communication Services Call SDK accepts a full Microsoft Teams meeting link. This link is returned as part of the `onlineMeeting` resource, under the [joinWebUrl property](/graph/api/resources/onlinemeeting?preserve-view=true&view=graph-rest-beta). You also can get the required meeting information from the **Join Meeting** URL in the Teams meeting invite itself.
Copy file name to clipboardExpand all lines: articles/communication-services/quickstarts/ui-library/includes/get-started-call/ios.md
+22-5Lines changed: 22 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -195,21 +195,38 @@ let remoteOptions = RemoteOptions(for: .groupCall(groupId: uuid),
195
195
196
196
For more information about using a group ID for calls, see [Manage calls](../../../../how-tos/calling-sdk/manage-calls.md).
197
197
198
-
### Set up a Teams meeting
198
+
### Join a Teams meeting
199
199
200
-
To set up a Microsoft Teams meeting, inside the `startCallComposite` function, initialize a `RemoteOptions` instance for the `.teamsMeeting` locator. Replace `<TEAMS_MEETING_LINK>` with the Teams meeting link for your call. Replace `<DISPLAY_NAME>` with your name.
200
+
You can join to a Teams meeting using two mechanisms:
201
+
202
+
- Teams meeting URL or Teams meetiong short URL
203
+
- Teams Meeting ID and Passcode
204
+
205
+
The Teams meeting link can be retrieved using Graph APIs, which is detailed in [Graph documentation](/graph/api/onlinemeeting-createorget?tabs=http&view=graph-rest-beta&preserve-view=true).
206
+
207
+
The Communication Services Calling SDK accepts a full Teams meeting link. This link is returned as part of the `onlineMeeting` resource, accessible under the [`joinWebUrl` property](/graph/api/resources/onlinemeeting?view=graph-rest-beta&preserve-view=true)
208
+
You can also get the required meeting information from the **Join Meeting** URL in the Teams meeting invite itself.
209
+
210
+
#### Join via Teams meeting URL
211
+
212
+
To join a Microsoft Teams meeting, inside the `startCallComposite` function, initialize a `RemoteOptions` instance for the `.teamsMeeting` locator. Replace `<TEAMS_MEETING_LINK>` with the Teams meeting link for your call. Replace `<DISPLAY_NAME>` with your name.
201
213
202
214
```swift
203
215
let remoteOptions = RemoteOptions(for: .teamsMeeting(teamsLink: "<TEAMS_MEETING_LINK>"),
204
216
credential: communicationTokenCredential,
205
217
displayName: "<DISPLAY_NAME>")
206
218
```
207
219
208
-
#### Get a Teams meeting link
220
+
#### Join via Teams Meeting ID and Passcode
221
+
222
+
The `TeamsMeetingIdLocator` locates a meeting using a meeting ID and passcode. These can be found under a Teams meeting's join info.
223
+
ATeams meeting ID will be 12 characters long and will consist of numeric digits grouped in threes (i.e. `000 000 000 000`).
224
+
A passcode will consist of 6 alphabet characters (i.e. `aBcDeF`). The passcode is case sensitive.
209
225
210
-
You can get a Microsoft Teams meeting link by using Graph APIs. This process is detailed in [Graph documentation](/graph/api/onlinemeeting-createorget?preserve-view=true&tabs=http&view=graph-rest-beta).
226
+
```swift
211
227
212
-
The Communication Services Call SDK accepts a full Microsoft Teams meeting link. This link is returned as part of the `onlineMeeting` resource, under the [joinWebUrl property](/graph/api/resources/onlinemeeting?preserve-view=true&view=graph-rest-beta). You also can get the required meeting information from the **Join Meeting** URL in the Teams meeting invite itself.
0 commit comments