I'm having some problems to upload the .zip file to microsoft Teams in my machine. When I go to bots tabs and I add the bot using "sideload a bot or a tab" button I'm having this error 1
I closed and opened Teams but still the same problem
Here you have the manifest example:
{
"$schema": "https://statics.teams.microsoft.com/sdk/v1.0/manifest/MicrosoftTeams.schema.json",
"manifestVersion": "1.0",
"id": "{app-id}",
"version": "1.0.0",
"packageName": "{app-name}",
"developer": {
"name": "{name}",
"websiteUrl": "{url}",
"privacyUrl": "{url}",
"termsOfUseUrl": "{url}"
},
"name": {
"short": "{name}"
},
"description": {
"short": "{description}",
"full": "{description}"
},
"accentColor": "#38a9f6",
"bots": [
{
"botId": "app-id",
"scopes": [ "team", "personal" ]
}
],
"icons": {
"color": "{logo_name}",
"outline": "{logo_name}"
},
"permissions": ["identity"]
}