microsoftgraph / microsoft-graph-comms-samples

Microsoft Graph Communications Samples
MIT License
211 stars 236 forks source link

Send text response from the PSI bot to the online meeting #711

Closed Javeria-Arif closed 8 months ago

Javeria-Arif commented 8 months ago

Hi all,

I want to send some live text responses continuously from my PSI bot to the online meeting in real-time. Any leads to in which class is the text implementation handled?

InDieTasten commented 8 months ago

Are you talking about sending messages into the chat of the online meeting?

Javeria-Arif commented 8 months ago

Yes

InDieTasten commented 8 months ago

Then you wanna take a look at https://learn.microsoft.com/en-us/graph/api/chatmessage-post?view=graph-rest-1.0&tabs=csharp#examples This repo is more related to the Graph Communications Calling SDK and I don't believe any of the samples are implementing messaging for channels or chats. Those are just part of regular Graph APIs and don't require a special SDK.

You will find the examples have tabs for selecting the protocol / language you wish to use the API with, which is pretty extensive compared to the app hosted media calling scenarios, which really only work on Windows using dotnet 6 or .NET Framework. image

Javeria-Arif commented 8 months ago

@InDieTasten Alright, I'll take a look into this. Thanks for the help.