page_type | description | products | languages | extensions | urlFragment | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sample |
Get real time meeting events |
|
|
|
officedev-microsoft-teams-samples-meetings-events-csharp |
Using this C# sample, a bot can receive real-time meeting events. For reference please check Real-time Teams meeting events
The feature shown in this sample is currently available in public developer preview only.
Please find below demo manifest which is deployed on Microsoft Azure and you can try it yourself by uploading the app package (.zip file link below) to your teams and/or as a personal app. (Sideloading must be enabled for your tenant, see steps here).
Realtime meeting events: Manifest
-
.NET Core SDK version 6.0
# determine dotnet version dotnet --version
-
Publicly addressable https url or tunnel such as ngrok or Tunnel Relay
NOTE: The free ngrok plan will generate a new URL every time you run it, which requires you to update your Azure AD registration, the Teams app manifest, and the project configuration. A paid account with a permanent ngrok URL is recommended.
- Setup for Bot
-
Register Azure AD application resource in Azure portal
-
In Azure portal, create a Azure Bot resource.
-
Ensure that you've enabled the Teams Channel
-
While registering the bot, use
https://<your_ngrok_url>/api/messages
as the messaging endpoint.
-
NOTE: When you create your bot you will create an App ID and App password - make sure you keep these for later.
- Setup NGROK
Run ngrok - point to port 3978
# ngrok http -host-header=rewrite 3978
- Setup for code
-
Clone the repository
git clone https://github.com/OfficeDev/Microsoft-Teams-Samples.git
-
Navigate to
samples/meetings-events/csharp
- Modify the
/appsettings.json
and fill in the{{ MicrosoftAppId }}
,{{ MicrosoftAppPassword }}
with the values received while doing AAD app registration in step 1.
- Modify the
-
Run the app from a terminal or from Visual Studio, choose option A or B.
A) From a terminal
# run the app dotnet run
B) Or from Visual Studio
- Launch Visual Studio
- File -> Open -> Project/Solution
- Navigate to
MeetingEvents
folder - Select
MeetingEvents.csproj
file - Press
F5
to run the project
- Setup Manifest for Teams
Modify the manifest.json
in the /AppPackage
folder and replace the following details
<<App-ID>>
with your AAD app registration id<<VALID DOMAIN>>
with base Url domain. E.g. if you are using ngrok it would behttps://1234.ngrok.io
then your domain-name will be1234.ngrok.io
.- Zip the contents of
AppPackage
folder into amanifest.zip
, and use themanifest.zip
to deploy in app store -
- Upload the
manifest.zip
to Teams- Select Apps from the left panel.
- Then select Upload a custom app from the lower right corner.
- Then select the
manifest.zip
file fromAppPackage
. - Install the App in Teams Meeting
- Upload the
Note: If you are facing any issue in your app, please uncomment this line and put your debugger for local debug.
Once the meeting where the bot is added starts or ends, real-time updates are posted in the chat.
MeetingEvents command interaction:
End meeting events details:
To learn more about deploying a bot to Azure, see Deploy your bot to Azure for a complete list of deployment instructions.