Forum Discussion
muditsaxena
Jun 14, 2022Copper Contributor
Bot unable to receive start and end meeting events for app published in organization
Hi, We recently integrated Azure Bot into our Teams App to receive meeting start and end events. When we side load this app on Teams we can receive meeting start and end events. When the same...
Prasad_Das-MSFT
Microsoft
Jun 15, 2022muditsaxena - We are able to repro this issue. We have raised a bug for the same and engineering team is looking into it. We will inform you once we get any further update. Thanks!
sanyamjain-20
Jun 22, 2022Copper Contributor
Prasad_Das-MSFT could you kindly share the steps performed to repro this issue?
want to make sure it's a platform bug (which would be a P0 bug) and not a configuration issue.
want to make sure it's a platform bug (which would be a P0 bug) and not a configuration issue.
- Prasad_Das-MSFTJun 23, 2022
Microsoft
Followed below sample:- Setup the code locally then Sideload the app in MS Teams, then add the app to any meeting
- You will get Meeting Start and End events - Upload the app to 'Org' catalogue, then add the app to any meeting
-You will not get Meeting Start and End events
Manifest JSON:{ "$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.12/MicrosoftTeams.schema.json", "manifestVersion": "1.12", "version": "1.0.0", "id": "f63a1b3f-5218-4b7b-98d8-1bbb6ed62b67", "packageName": "com.microsoft.teams.botmeetingevents", "developer": { "name": "Microsoft", "websiteUrl": "https://www.microsoft.com", "privacyUrl": "https://www.microsoft.com/privacy", "termsOfUseUrl": "https://www.microsoft.com/termsofuse" }, "name": { "short": "Meeting Events", "full": "Sample for meeting events" }, "description": { "short": "Access real-time meeting events", "full": "This sample demos a bot with access to meeting events" }, "icons": { "outline": "outline.png", "color": "color.png" }, "bots": [ { "botId": "448ec85c-4395-4f80-b5a1-cd3bdefd1f5b", "scopes": [ "team", "personal", "groupchat" ], "isNotificationOnly": false } ], "accentColor": "#60A18E", "permissions": [ "identity", "messageTeamMembers" ], "validDomains": [ "*.ngrok.io", "token.botframework.com" ], "webApplicationInfo": { "id": "448ec85c-4395-4f80-b5a1-cd3bdefd1f5b", "resource": "https://AnyString" }, "authorization": { "permissions": { "resourceSpecific": [ { "type": "Application", "name": "OnlineMeeting.ReadBasic.Chat" } ] } } }
- Setup the code locally then Sideload the app in MS Teams, then add the app to any meeting