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
In an Azure Communication Service Chat, we can enable file sharing between communication users. Note, Azure Communication Services Chat is different from the Teams Interoperability Chat ("Interop Chat"). If you want to enable file sharing in an Interop Chat, refer to [Add file sharing with UI Library in Teams Interoperability Chat](./file-sharing-tutorial-interop-chat.md).
20
+
In an Azure Communication Services Chat, we can enable file sharing between communication users. Note, Azure Communication Services Chat is different from the Teams Interoperability Chat ("Interop Chat"). If you want to enable file sharing in an Interop Chat, refer to [Add file sharing with UI Library in Teams Interoperability Chat](./file-sharing-tutorial-interop-chat.md).
21
21
22
22
In this tutorial, we're configuring the Azure Communication Services UI Library Chat Composite to enable file sharing. The UI Library Chat Composite provides a set of rich components and UI controls that can be used to enable file sharing. We're using Azure Blob Storage to enable the storage of the files that are shared through the chat thread.
23
23
@@ -331,7 +331,7 @@ Download errors are displayed to users in an error bar on top of the Chat Compos
331
331
332
332
## Clean up resources
333
333
334
-
If you want to clean up and remove a Communication Services subscription, you can delete the resource or resource group. Deleting the resource group also deletes any other resources associated with it. You can find out more about [cleaning up Azure Communication Service resources](../quickstarts/create-communication-resource.md#clean-up-resources) and [cleaning Azure Function Resources](../../azure-functions/create-first-function-vs-code-csharp.md#clean-up-resources).
334
+
If you want to clean up and remove a Communication Services subscription, you can delete the resource or resource group. Deleting the resource group also deletes any other resources associated with it. You can find out more about [cleaning up Azure Communication Services resources](../quickstarts/create-communication-resource.md#clean-up-resources) and [cleaning Azure Function Resources](../../azure-functions/create-first-function-vs-code-csharp.md#clean-up-resources).
335
335
336
336
## Next steps
337
337
@@ -345,5 +345,5 @@ You may also want to:
345
345
-[Learn about client and server architecture](../concepts/client-and-server-architecture.md)
346
346
-[Learn about authentication](../concepts/authentication.md)
347
347
-[Add file sharing with UI Library in Teams Interoperability Chat](./file-sharing-tutorial-interop-chat.md)
348
-
-[Add file sharing with UI Library in Azure Communication Service Chat](./file-sharing-tutorial-acs-chat.md)
348
+
-[Add file sharing with UI Library in Azure Communication Services Chat](./file-sharing-tutorial-acs-chat.md)
349
349
-[Add inline image with UI Library in Teams Interoperability Chat](./inline-image-tutorial-interop-chat.md)
In a Teams Interoperability Chat ("Interop Chat"), we can enable file sharing between Azure Communication Service end users and Teams users. Note, Interop Chat is different from the Azure Communication Service Chat. If you want to enable file sharing in an Azure Communication Services Chat, refer to [Add file sharing with UI Library in Azure Communication Service Chat](./file-sharing-tutorial-acs-chat.md). Currently, the Azure Communication Service end user is only able to receive file attachments from the Teams user. Please refer to [UI Library Use Cases](../concepts/ui-library/ui-library-use-cases.md) to learn more.
18
+
In a Teams Interoperability Chat ("Interop Chat"), we can enable file sharing between Azure Communication Services end users and Teams users. Note, Interop Chat is different from the Azure Communication Services Chat. If you want to enable file sharing in an Azure Communication Services Chat, refer to [Add file sharing with UI Library in Azure Communication Services Chat](./file-sharing-tutorial-acs-chat.md). Currently, the Azure Communication Services end user is only able to receive file attachments from the Teams user. Please refer to [UI Library Use Cases](../concepts/ui-library/ui-library-use-cases.md) to learn more.
19
19
20
20
>[!IMPORTANT]
21
21
>
@@ -40,9 +40,9 @@ Access the code for this tutorial on [GitHub](https://github.com/Azure-Samples/c
40
40
41
41
## Background
42
42
43
-
First of all, we need to understand that Teams Interop Chat has to part of a Teams meeting currently. When the Teams user creates an online meeting, a chat thread would be created and associated with the meeting. To enable the Azure Communication Service end user joining the chat and starting to send/receive messages, a meeting participant (a Teams user) would need to admit them to the call first. Otherwise, they don't have access to the chat.
43
+
First of all, we need to understand that Teams Interop Chat has to part of a Teams meeting currently. When the Teams user creates an online meeting, a chat thread would be created and associated with the meeting. To enable the Azure Communication Services end user joining the chat and starting to send/receive messages, a meeting participant (a Teams user) would need to admit them to the call first. Otherwise, they don't have access to the chat.
44
44
45
-
Once the Azure Communication Service end user is admitted to the call, they would be able to start to chat with other participants on the call. In this tutorial, we're checking out how inline image works in Interop chat.
45
+
Once the Azure Communication Services end user is admitted to the call, they would be able to start to chat with other participants on the call. In this tutorial, we're checking out how inline image works in Interop chat.
46
46
47
47
## Overview
48
48
@@ -76,7 +76,7 @@ To be able to start the Composite for meeting chat, we need to pass `TeamsMeetin
76
76
77
77
Note that meeting link should look something like `https://teams.microsoft.com/l/meetup-join/19%3ameeting_XXXXXXXXXXX%40thread.v2/XXXXXXXXXXX`
78
78
79
-
And this is all you need! And there's no other setup needed to enable the Azure Communication Service end user to receive file attachments from the Teams user.
79
+
And this is all you need! And there's no other setup needed to enable the Azure Communication Services end user to receive file attachments from the Teams user.
80
80
81
81
## Permissions
82
82
@@ -87,7 +87,7 @@ When file is shared from a Teams client, the Teams user has options to set the f
87
87
- "People with existing access"
88
88
- "People you choose"
89
89
90
-
Specifically, the UI library currently only supports "Anyone" and "People you choose" (with email address) and all other permissions aren't supported. If Teams user sent a file with unsupported permissions, the Azure Communication Service end user might be prompted to a login page or denied access when they click on the file attachment in the chat thread.
90
+
Specifically, the UI library currently only supports "Anyone" and "People you choose" (with email address) and all other permissions aren't supported. If Teams user sent a file with unsupported permissions, the Azure Communication Services end user might be prompted to a login page or denied access when they click on the file attachment in the chat thread.
91
91
92
92
93
93

@@ -109,7 +109,7 @@ Simply click on the chat button located in the bottom to reveal the chat panel a
109
109
110
110
And now if the user click on the file attachment card, a new tab would be opened like the following where the user can download the file:
111
111
112
-

112
+

113
113
114
114
115
115
## Next steps
@@ -124,5 +124,5 @@ You may also want to:
124
124
-[Creating user access tokens](../quickstarts/identity/access-tokens.md)
125
125
-[Learn about client and server architecture](../concepts/client-and-server-architecture.md)
126
126
-[Learn about authentication](../concepts/authentication.md)
127
-
-[Add file sharing with UI Library in Azure Azure Communication Service end user Service Chat](./file-sharing-tutorial-acs-chat.md)
127
+
-[Add file sharing with UI Library in Azure Azure Communication Services end user Service Chat](./file-sharing-tutorial-acs-chat.md)
128
128
-[Add inline image with UI Library in Teams Interoperability Chat](./inline-image-tutorial-interop-chat.md)
0 commit comments