I want to have a message extension, action based command that simply sends the message text to the message handler. So when the user clicks the message extension from the (...) context menu, that is it, no other input/step is necessary.
It appears that Microsoft forces you to have some additional parameters.
Is there a way to get around this and simply send the message content without additional parameters?
I tried to setting fetchTask to false and removing the parameter values, but that doesn't work.
Is there any solution available to achieve this?
"composeExtensions": [
{
"botId": "--Bot Id Here--",
"commands": [
{
"id": "commandId",
"type": "action",
"title": "Command Title",
"description": "",
"initialRun": true,
"fetchTask": false,
"context": [
"message"
]
}
]
}
]
I want to publish it on store, so it must pass the the manifest validation test.