Configure the bot to support files but it's not working in teams' channel
Hi Team,
We have configured the bot to support files and below is the settings in manifest file.
"bots": [
{
"botId": <bot id>,
"scopes": [
"personal",
"team"
],
"commandLists": [
{
"scopes": [
"team"
],
"commands": [
{
"title": "help",
"description": "help"
}
]
},
{
"scopes": [
"personal"
],
"commands": [
{
"title": "help",
"description": "help"
}
]
}
],
"supportsFiles": true,
"isNotificationOnly": false
}
],
Our scenario is to send an image from personal chat to the teams channel and vice versa. It works perfect in sending from personal chat to teams channel and below the screenshots for the data we get in bot context activity.
While sending an image from the Teams channel to a personal chat, we are not receiving the download information in the turn context activity as the above turn context data.
What could be the reasons why sending an attachment from the Teams channel does not include information about the image. Do we need to make any changes to the manifest file to get the download info when sending files from the Teams channel.