Forum Discussion
MatthewCohen
Dec 30, 2020Copper Contributor
Adding authentication to messaging extension and testing locally.
Adding authentication to messaging extension and testing locally. Unable to access openUrl hosted on ngrok Following the steps here to add authentication to a messaging extension: https://docs....
MatthewCohen
Jan 05, 2021Copper Contributor
{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.8/MicrosoftTeams.schema.json",
"manifestVersion": "1.8",
"version": "1.0.0",
"showLoadingIndicator": true,
"id": "f9083eaf-0ae8-4331-9653-10080cc36b54",
"packageName": "{{PACKAGE_NAME}}",
"developer": {
"name": "brightidea",
"websiteUrl": "https://{{HOSTNAME}}",
"privacyUrl": "https://{{HOSTNAME}}/privacy.html",
"termsOfUseUrl": "https://{{HOSTNAME}}/tou.html"
},
"icons": {
"color": "color.png",
"outline": "outline.png"
},
"name": {
"short": "BI Test 1",
"full": "BI Test 1"
},
"description": {
"short": "TODO: add short description here",
"full": "TODO: add full description here"
},
"accentColor": "#D85028",
"bots": [
{
"botId": "aa38ad8c-5635-49c2-80b6-e3b0d2b47333",
"scopes": [
"team",
"groupchat",
"personal"
],
"supportsFiles": false,
"isNotificationOnly": false
}
],
"composeExtensions": [
{
"botId": "aa38ad8c-5635-49c2-80b6-e3b0d2b47333",
"canUpdateConfiguration": false,
"commands": [
{
"id": "createIdea",
"type": "action",
"title": "Create Idea",
"description": "Create an idea from a message",
"initialRun": true,
"fetchTask": true,
"context": [
"message"
],
"parameters": [
{
"name": "param",
"title": "param",
"description": ""
}
]
}
]
}
],
"permissions": [
"identity",
"messageTeamMembers"
],
"validDomains": [
"1e5e8f0306b0.ngrok.io"
]
}Varaprasad-MSFT
Jan 07, 2021Former Employee
Thanks for sharing the manifest , we are checking internally and get back to you on this.