microsoft-teams icon indicating copy to clipboard operation
microsoft-teams copied to clipboard

isNotificationOnly: true is not working in teams mobile app

Open viveknuna opened this issue 2 years ago • 1 comments

I have followed this documentation. I don't want users to send messages. So I changed isNotificationOnly: true and it's working as expected on my PC. I am able to send messages to teams on the mobile app. So Do we need to make some additional changes in the manifest.json file?

  "bots": [
    {
      "botId": "11111111-1111-1111-1111-111111111111",
      "scopes": [
        "personal",
        "groupchat"
      ],
      "supportsFiles": false,
      "isNotificationOnly": true
    }
  ]

More details:

<TargetFramework>net6.0</TargetFramework>

These are the bot-related packages added to my project.

enter image description here

I have asked this question on StackOverflow as well, I am posting it here for better reach.

viveknuna avatar Sep 13 '23 14:09 viveknuna