Skip to content

Commit d41f647

Browse files
committed
description below headers (how to join call)
1 parent 430d446 commit d41f647

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

articles/communication-services/how-tos/calling-sdk/includes/teams-interopability/teams-interopability-android.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,33 @@ ms.author: jiyoonlee
1111
To join a Teams meeting, use the `CallAgent.join` method and pass application context, `JoinMeetingLocator`, and `JoinCallOptions`.
1212

1313
### Meeting ID and passcode
14+
The `TeamsMeetingIdLocator` locates a meeting using a meeting ID and passcode. These can be found under a Teams meeting's join info.
1415
A Teams meeting ID will be 12 characters long and will consist of numeric digits grouped in threes (i.e. `000 000 000 000`).
15-
A passcode will consist of 6 alphabet characters (i.e. `aBcDeF`).
16+
A passcode will consist of 6 alphabet characters (i.e. `aBcDeF`). The passcode is case sensitive.
1617

1718
```java
1819
String meetingId, passcode;
1920
TeamsMeetingIdLocator locator = new TeamsMeetingIdLocator(meetingId, passcode);
2021
```
2122

2223
### Meeting link
24+
The `TeamsMeetingLinkLocator` locates a meeting using a link to a Teams meeting. This can found under a Teams meeting's join info.
2325
```java
2426
String meetingLink;
2527
TeamsMeetingLinkLocator locator = new TeamsMeetingLinkLocator(meetingLink);
2628
```
2729

2830
### Meeting coordinates
29-
(this is currently in limited preview)
30-
31+
The `TeamsMeetingCoordinatesLocator` locates meetings using an organizer ID, tenant ID, thread ID, and a message ID. This information can be found using Microsoft Graph.
3132
```java
3233
Guid organizerId, tenantId;
3334
String threadId, messageId;
3435
TeamsMeetingCoordinatesLocator locator = new TeamsMeetingCoordinatesLocator(threadId, organizerId, tenantId, messageId);
3536
```
3637

3738
## Join meeting using locators
39+
After creating these Teams meeting locators, you can use it to join a Teams meeting using `CallAgent.join` as shown below.
40+
3841
```java
3942
JoinCallOptions options = new JoinCallOptions();
4043
call = agent.join(

articles/communication-services/how-tos/calling-sdk/includes/teams-interopability/teams-interopability-ios.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,28 @@ ms.author: jiyoonlee
88
[!INCLUDE [Install SDK](../install-sdk/install-sdk-windows.md)]
99

1010
## Meeting join methods
11-
To join a Teams meeting, use the `CallAgent.Jjoin` method and pass a `JoinMeetingLocator` and a `JoinCallOptions`.
11+
To join a Teams meeting, use the `CallAgent.join` method and pass a `JoinMeetingLocator` and a `JoinCallOptions`.
1212

1313
### Meeting ID and passcode
14+
The `TeamsMeetingIdLocator` locates a meeting using a meeting ID and passcode. These can be found under a Teams meeting's join info.
1415
A Teams meeting ID will be 12 characters long and will consist of numeric digits grouped in threes (i.e. `000 000 000 000`).
15-
A passcode will consist of 6 alphabet characters (i.e. `aBcDeF`).
16+
A passcode will consist of 6 alphabet characters (i.e. `aBcDeF`). The passcode is case sensitive.
1617

1718
```swift
1819
String meetingId, passcode
1920
let locator = TeamsMeetingIdLocator(meetingId: meetingId, passcode: passcode)
2021
```
2122

2223
### Meeting link
24+
The `TeamsMeetingLinkLocator` locates a meeting using a link to a Teams meeting. This can found under a Teams meeting's join info.
2325
```swift
2426
String meetingLink
2527
let locator = TeamsMeetingLinkLocator(meetingLink: meetingLink)
2628
```
2729

2830
## Join meeting using locators
31+
After creating these Teams meeting locators, you can use it to join a Teams meeting using `CallAgent.join` as shown below.
32+
2933
```swift
3034
func joinTeamsMeeting() {
3135
// Ask permissions

articles/communication-services/how-tos/calling-sdk/includes/teams-interopability/teams-interopability-windows.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,32 @@ ms.author: jiyoonlee
1111
To join a Teams meeting, use the `CallAgent.JoinAsync` method and pass a `JoinMeetingLocator` and a `JoinCallOptions`.
1212

1313
### Meeting ID and passcode
14+
The `TeamsMeetingIdLocator` locates a meeting using a meeting ID and passcode. These can be found under a Teams meeting's join info.
1415
A Teams meeting ID will be 12 characters long and will consist of numeric digits grouped in threes (i.e. `000 000 000 000`).
15-
A passcode will consist of 6 alphabet characters (i.e. `aBcDeF`).
16+
A passcode will consist of 6 alphabet characters (i.e. `aBcDeF`). The passcode is case sensitive.
1617

1718
```cs
1819
string meetingId, passcode;
1920
TeamsMeetingIdLocator locator = new TeamsMeetingIdLocator(meetingId, passcode);
2021
```
2122

2223
### Meeting link
24+
The `TeamsMeetingLinkLocator` locates a meeting using a link to a Teams meeting. This can found under a Teams meeting's join info.
2325
```cs
2426
string meetingLink;
2527
TeamsMeetingLinkLocator locator = new TeamsMeetingLinkLocator(meetingLink);
2628
```
2729

2830
### Meeting coordinates
29-
(this is currently in limited preview)
30-
31+
The `TeamsMeetingCoordinatesLocator` locates meetings using an organizer ID, tenant ID, thread ID, and a message ID. This information can be found using Microsoft Graph.
3132
```cs
3233
Guid organizerId, tenantId;
3334
string threadId, messageId;
3435
TeamsMeetingCoordinatesLocator locator = new TeamsMeetingCoordinatesLocator(threadId, organizerId, tenantId, messageId);
3536
```
3637

3738
## Join meeting using locators
39+
After creating these Teams meeting locators, you can use it to join a Teams meeting using `CallAgent.JoinAsync` as shown below.
3840
```cs
3941
var joinCallOptions = new JoinCallOptions() {
4042
OutgoingAudioOptions = new OutgoingAudioOptions() { IsMuted = true },

0 commit comments

Comments
 (0)