integrations / microsoft-teams

Bringing your code and work to the conversations you care about with the GitHub and Microsoft integration
435 stars 97 forks source link

isNotificationOnly: true is not working in teams mobile app #335

Open viveknuna opened 1 year ago

viveknuna commented 1 year ago

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.