Forum Discussion

Denys-Fokin's avatar
Denys-Fokin
Copper Contributor
Jun 30, 2025
Solved

Consent popup

Hi everyone, I’m reaching out for clarification regarding a popup that intermittently appears when users interact with our notification only bot, specifically when attempting to open a task module. ...
  • Sayali-MSFT's avatar
    Sayali-MSFT
    Jul 04, 2025

    Hello Denys-Fokin,
    This consent popup appears to be related to Azure AD app registration consent flow, not a bug. The consent popup is expected behavior for multi-tenant apps without proper configuration. 
    Looking at your manifest, Missing webApplicationInfo in manifest, so Teams can't identify your Azure AD app properly.

    Add  webApplicationInfo in your manifest and declare minimal permissions:

     { // ...existing code...
    
      "webApplicationInfo": {
    
        "id": "526ebd72-4b57-4c34-b84f-7fb03b6ddeb6",
    
        "resource": "api://tatamf.stg.skillscaravan.com/526ebd72-4b57-4c34-b84f-7fb03b6ddeb6"
    
      },
    
      "permissions": [
    
        "identity",
    
        "messageTeamMembers"
    
      ],
    
      // ...existing code...
    
    }

     

Resources