Skip to content

Commit ba972d2

Browse files
authored
Merge pull request #272926 from emlynmac/emlyn/dotnet-docs-shortlink-url-update
Add note about need for long teams meeting URL
2 parents 02e367d + 1fc79ef commit ba972d2

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

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

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.topic: include
77
ms.service: azure-communication-services
88
---
99

10-
In this quickstart, you'll learn how to chat in a Teams meeting using the Azure Communication Services Chat SDK for C#.
10+
In this quickstart, you learn how to chat in a Teams meeting using the Azure Communication Services Chat SDK for C#.
1111

1212
## Sample code
1313
Find the code for this quickstart on [GitHub](https://github.com/Azure-Samples/communication-services-dotnet-quickstarts/tree/main/ChatTeamsInteropQuickStart).
@@ -22,12 +22,12 @@ Find the code for this quickstart on [GitHub](https://github.com/Azure-Samples/c
2222

2323
## Joining the meeting chat
2424

25-
A Communication Services user can join a Teams meeting as an anonymous user using the Calling SDK. Joining the meeting will add them as a participant to the meeting chat as well, where they can send and receive messages with other users in the meeting. The user will not have access to chat messages that were sent before they joined the meeting and they will not be able to send or receive messages after the meeting ends. To join the meeting and start chatting, you can follow the next steps.
25+
A Communication Services user can join a Teams meeting as an anonymous user using the Calling SDK. Joining the meeting adds them as a participant to the meeting chat as well, where they can send and receive messages with other users in the meeting. The user won't have access to chat messages that were sent before they joined the meeting, and they won't be able to send or receive messages after the meeting ends. To join the meeting and start chatting, you can follow the next steps.
2626

2727
## Run the code
28-
You can build and run the code on Visual Studio. Please note the solution platforms we support `x64`,`x86` and `ARM64`.
28+
You can build and run the code on Visual Studio. Note the solution platforms we support: `x64`,`x86`, and `ARM64`.
2929

30-
1. Open an instance of PowerShell, Windows Terminal, Command Prompt or equivalent and navigate to the directory that you'd like to clone the sample to.
30+
1. Open an instance of PowerShell, Windows Terminal, Command Prompt, or equivalent and navigate to the directory that you'd like to clone the sample to.
3131
2. `git clone https://github.com/Azure-Samples/Communication-Services-dotnet-quickstarts.git`
3232
3. Open the project ChatTeamsInteropQuickStart/ChatTeamsInteropQuickStart.csproj in Visual Studio.
3333
4. Install the following NuGet packages versions (or higher):
@@ -39,15 +39,15 @@ Install-Package Azure.Communication.Identity -Version 1.0.1
3939

4040
```
4141

42-
5. With the Communication Services resource procured in pre-requisites, add the connectionstring to the **ChatTeamsInteropQuickStart/MainPage.xaml.cs** file.
42+
5. With the Communication Services resource procured in prerequisites, add the connectionstring to the **ChatTeamsInteropQuickStart/MainPage.xaml.cs** file.
4343

4444
``` csharp
45-
//Azure Communication Services resource connection string i.e = "endpoint=https://your-resource.communication.azure.net/;accesskey=your-access-key";
45+
//Azure Communication Services resource connection string, i.e., = "endpoint=https://your-resource.communication.azure.net/;accesskey=your-access-key";
4646
private const string connectionString_ = "";
4747
```
4848

4949
> [!IMPORTANT]
50-
> * Select the proper platform from the 'Solution Platforms' dropdown list in Visual Studio <b>before</b> running the code. i.e `x64`
50+
> * Select the proper platform from the 'Solution Platforms' dropdown list in Visual Studio <b>before</b> running the code, i.e., `x64`
5151
> * Make sure you have the 'Developer Mode' in Windows 10 enabled [(Developer Settings)](/windows/apps/get-started/enable-your-device-for-development)
5252
>
5353
> *The next steps will not work if this is not configured properly*
@@ -143,6 +143,7 @@ The Teams meeting link can be retrieved using Graph APIs, detailed in [Graph doc
143143

144144
You can also get the required meeting link from the **Join Meeting** URL in the Teams meeting invite itself.
145145
A Teams meeting link looks like this: `https://teams.microsoft.com/l/meetup-join/meeting_chat_thread_id/1606337455313?context=some_context_here`.
146+
If your teams link has a different format to this, you need to retrieve the thread ID using the Graph API.
146147

147148
:::image type="content" source="../join-teams-meeting-chat-quickstart-windows.png" alt-text="Screenshot of the completed csharp Application.":::
148149

0 commit comments

Comments
 (0)