botkit icon indicating copy to clipboard operation
botkit copied to clipboard

How to upload this Bot to Teams?

Open Mattw11486 opened this issue 2 years ago • 2 comments

The bot works just fine in bot framework and I can get it to work in developer mode if I upload the bot as an app in azure but since my organization doesn't allow me admin mode to azure my only option is to submit to my org through teams via the manage apps button.

image

However, in order to do that it requires a manifest schema which I have created but I am still getting an error when trying to upload it to teams.

image

Not sure what I am missing here is my current Schema, if anyone has any examples that have gotten this botkit to work with this that would be great!

{ "$schema": "https://developer.microsoft.com/json-schemas/teams/v1.12/MicrosoftTeams.schema.json", "manifestVersion": "1.12", "version": "1.0.0", "id": "83ee6670-bf5f-4b2d-8089-320a49728469", "packageName": "com.microsoft.teams.sdbot", "developer": { "name": "Matt Wood", "websiteUrl": "", "privacyUrl": "https://www.teams.com/privacy", "termsOfUseUrl": "https://www.teams.com/termsofuse" }, "icons": { "color": "NodriSWA.png", "outline": "NodriSWA.png" }, "name": { "short": "Nodri", "full": "Nodri the Service Desk Bot" }, "description": { "short": "Nodri", "full": "Nodri is a Service Desk Q&A Bot for the Service Desk Teams channel that can be expanded to add more Q&A, added to additional channels, and much more!." }, "accentColor": "#FFFFFF", "bots": [ { "botId": "83ee6670-bf5f-4b2d-8089-320a49728469", "scopes": [ "personal", "team", "groupchat" ], "supportsFiles": true, "isNotificationOnly": false, "supportsCalling": true, "supportsVideo": true } ], "permissions": [ "identity", "messageTeamMembers" ], "validDomains": [] }

Mattw11486 avatar Apr 29 '22 06:04 Mattw11486

Instead of uploading the schema, I would use the "App Studio" application inside Teams to set up your bot.

benbrown avatar May 02 '22 16:05 benbrown

Yes unfortunately my company doesn't provide the access to the App Studio App :(

Mattw11486 avatar May 12 '22 23:05 Mattw11486