You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using github OAuth flow with teams bot. I have tested the code using bot emulator and web chat and oauth flow is working perfectly fine. But when I upload app in teams and click on Sign-in. The sign in flow is successfull but then I get the message (Unable to reach app. Please try again.). If there was some issue with oauth endpoints then even in bot emulator things would have failed. I believe it is some manifest or settings issue but not able to figure it out.
Hey ,
I am using github OAuth flow with teams bot. I have tested the code using bot emulator and web chat and oauth flow is working perfectly fine. But when I upload app in teams and click on Sign-in. The sign in flow is successfull but then I get the message (Unable to reach app. Please try again.). If there was some issue with oauth endpoints then even in bot emulator things would have failed. I believe it is some manifest or settings issue but not able to figure it out.
Following is my manifest.json file
{ "$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.11/MicrosoftTeams.schema.json", "manifestVersion": "1.11", "version": "1.0.0", "id": "87a5070e-2486-45c8-91af-23fb60ef0691", "name": { "short": "Testing AY", "full": "Testing AY Bot" }, "developer": { "name": "Testing AY", "websiteUrl": "https://dev.ay.com", "privacyUrl": "https://dev.ay.com", "termsOfUseUrl": "https://dev.ay.com" }, "description": { "full": "This bot helps users in your organization interact with AY", "short": "AY Bot" }, "icons": { "color": "color.png", "outline": "outline.png" }, "accentColor": "#FFFFFF", "bots": [ { "botId": "BOT_ID", "scopes": ["personal"], "isNotificationOnly": false, "supportsCalling": false, "supportsVideo": false, "supportsFiles": false } ], "permissions": ["identity", "messageTeamMembers"], "validDomains": ["endpoint","token.botframework.com" ], "webApplicationInfo": { "id": "BOT_ID", "resource": "api://botid-BOT_ID" } }
The text was updated successfully, but these errors were encountered: