Jun 14 2022 12:20 PM - edited Jun 14 2022 12:21 PM
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 app is published to org and added to a meeting then this app cannot receive the meeting start and end events. This is how our current manifest looks
{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.12/MicrosoftTeams.schema.json",
"manifestVersion": "1.12",
"version": "[MS_TEAMS_APP_BUILD_NUMBER]",
"id": "[MS_TEAMS_APP_ID]",
"developer": {
"name": "[NAME]",
"websiteUrl": "[URL]",
"privacyUrl": "[PRIVACY_URL]",
"termsOfUseUrl": "[TOS_URL]"
},
"name": {
"short": "[MS_TEAMS_APP_NAME]"
},
"description": {
"short": "Teams",
"full": "[MS_TEAMS_APP_LONG_DESC]"
},
"icons": {
"color": "color.png",
"outline": "outline.png"
},
"accentColor": "#FFFFFF",
"bots": [
{
"botId": "[MS_BOT_ID]",
"scopes": ["groupchat"],
"isNotificationOnly": false
}
],
"webApplicationInfo": {
"id": "[MS_BOT_ID]",
"resource": "https://RscPermission"
},
"configurableTabs": [
{
"configurationUrl": "[CLIENT_BASE_URL]/config",
"scopes": ["groupchat"],
"context": [
"meetingSidePanel",
"meetingStage",
"meetingChatTab",
"meetingDetailsTab"
]
}
],
"authorization": {
"permissions": {
"resourceSpecific": [
{
"type": "Application",
"name": "OnlineMeeting.ReadBasic.Chat"
},
{
"type": "Delegated",
"name": "MeetingStage.Write.Chat"
}
]
}
}
}
Jun 14 2022 11:34 PM
@muditsaxena - We are checking the issue. We will get back to you shortly.
Jun 15 2022 02:46 AM
@muditsaxena - 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!
Jun 16 2022 12:02 AM
Jun 16 2022 12:11 AM
@muditsaxena - We have brought this to notice of engineering team . There is no ETA to share as of now. We will keep you posted about any updates. Thanks!
Jun 22 2022 01:30 PM
Jun 22 2022 09:02 PM
{
"$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"
}
]
}
}
}
Jun 30 2022 05:31 AM
Dec 05 2022 04:05 AM
@muditsaxena - We got confirmation from engineering team that this issue is fixed. Please do verify.
Thanks,
Prasad Das
----------------------------------------------------------------------------------------------------------
If the response is helpful, please click "**Mark as Best Response**" and like it. You can share your feedback via Microsoft Teams Developer Feedback link. Click here to escalate.