Forum Discussion
Denys-Fokin
Jun 30, 2025Copper Contributor
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. ...
- 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... }
Sayali-MSFT
Microsoft
Jul 01, 2025Hello @Denys-Fokin,Thank you for reaching out! Could you please provide more details about your issue? Specifically, it would be helpful to know:
- Reproduction Steps: What steps did you take leading up to the problem?
- Documentation Links: Are there any specific guides or documentation you followed?
- Teams Client Version: What version of the Teams client are you using?
- Code Snippets: If applicable, please share any relevant code snippets.
- Manifest Package: If you have one, could you include the manifest package for your app?
Providing this information will help us better understand your situation and assist you more effectively.