microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feature/oauthflow-fixes

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

core/samples/AllInvokesBot/manifest.json

61lines · modecode

1{
2 "$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.24/MicrosoftTeams.schema.json",
3 "version": "1.0.0",
4 "manifestVersion": "1.24",
5 "id": "YOUR_BOT_ID",
6 "name": {
7 "short": "YOUR_BOT_NAME",
8 "full": "YOUR_BOT_NAME"
9 },
10 "developer": {
11 "name": "Microsoft",
12 "mpnId": "",
13 "websiteUrl": "https://microsoft.com",
14 "privacyUrl": "https://privacy.microsoft.com/privacystatement",
15 "termsOfUseUrl": "https://www.microsoft.com/legal/terms-of-use"
16 },
17 "description": {
18 "short": "YOUR_BOT_NAME",
19 "full": "YOUR_BOT_NAME"
20 },
21 "icons": {
22 "outline": "outline.png",
23 "color": "color.png"
24 },
25 "accentColor": "#FFFFFF",
26 "staticTabs": [
27 {
28 "entityId": "conversations",
29 "scopes": [
30 "personal"
31 ]
32 },
33 {
34 "entityId": "about",
35 "scopes": [
36 "personal"
37 ]
38 }
39 ],
40 "bots": [
41 {
42 "botId": "YOUR_BOT_ID",
43 "scopes": [
44 "personal",
45 "team",
46 "groupChat"
47 ],
48 "isNotificationOnly": false,
49 "supportsCalling": false,
50 "supportsVideo": false,
51 "supportsFiles": true
52 }
53 ],
54 "validDomains": [
55 "*.microsoft.com"
56 ],
57 "webApplicationInfo": {
58 "id": "YOUR_BOT_ID",
59 "resource": "https://graph.microsoft.com"
60 }
61}
62