Teams app validation error
Hello there,
I tried registering bot to Teams based on this site, https://learn.microsoft.com/en-us/samples/officedev/microsoft-teams-samples/officedev-microsoft-teams-samples-bot-conversation-csharp/.
Used the same source code, no problem for build.
Emulator works fine. Ngrok works fine. Azure bot having ngrok endpoint works well.
Even In test in azure webchating. I checked my bot works properly.
So only one thing left. I tried registering teams app using my manifest.json in dev portal (https://dev.teams.microsoft.com/)
I uploaded my appPackage.zip including image files and manifest.json in dev portal
,but encountered some errors which I do not have any idea how to solve.
Is there any suggestion ?
-my manifest.json-
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.19/MicrosoftTeams.schema.json",
"manifestVersion": "1.19",
"version": "1.0.0",
"id": "4f7ac614-6c11-413d-9381-0c635c198e74",
"developer": {
"name": "TeamsConversationBotnoedit",
"websiteUrl": "https://www.microsoft.com",
"privacyUrl": "https://www.teams.com",
"termsOfUseUrl": "https://www.teams.com"
``` },
"icons": {
"outline": "icon-outline.png",
"color": "icon-color.png"
"name": {
"short": "TeamsConversationBotnoedit",
"full": "TeamsConversationBotnoedit"
},
"short": "Demo bot for Teams showing conversation events with adaptive card support.",
"full": "This sample app showcases Teams bot conversation events and adaptive cards."
"accentColor": "#FFFFFF",
"bots": [
{
"botId": "5f7ac614-6c11-413d-9381-0c635c198e79",
"scopes": [
"personal",
"groupChat",
"team"
],
"isNotificationOnly": false,
"supportsCalling": false,
"supportsVideo": false,
"supportsFiles": false,
"commandLists": [
{
"scopes": [
"personal",
"groupChat",
"team"
],
"commands": [
{
"title": "MentionMe",
"description": "Sends message with @mention of the sender"
},
{
"title": "Show Welcome",
"description": "Shows the welcome card"
},
{
"title": "MessageAllMembers",
"description": "Send 1 to 1 message to all members of the current conversation"
},
{
"title": "MessageAllMembersUsingAadId",
"description": "Send 1 to 1 message to all members of the current conversation using their AADId"
}
]
}
]
}
"permissions": [
"identity",
"messageTeamMembers"
"webApplicationInfo": {
"id": "5f7ac614-6c11-413d-9381-0c635c198e79",
"resource": "https://RscBasedStoreApp"
},
"permissions": {
"resourceSpecific": [
{
"name": "ChatMessageReadReceipt.Read.Chat",
"type": "Application"
}
]
}
"validDomains": [
"bff7-121-137-73-34.ngrok-free.app"
]