-
Notifications
You must be signed in to change notification settings - Fork 870
Closed
Description
I'd like to let bot auto reply, so I'm trying the bot-receive-channel-messages-withRSC
sample https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/bot-receive-channel-messages-withRSC/nodejs , but I failed to upload the teams app's manifest zip.
- Please help to resolve the failure
- Or share an workround to make bot be able to auto reply
diagnostic web log (summary.txt).
Please share an email or ping me directly in Teams if you need more logs, I can share the entire logs.
SessionId: 57117427-28d8-4cd4-9d3c-65fafc2b2405
DeviceId: f3176268-5d8f-4266-bcb2-473c8fe72825
HostVersion: 25163.3603.3726.6482
TraceId: 39b8a0027e00184d3bc57ad09ba2a1fe
WebVersion: 49/25070318806
Language(App): en-us
BrowserLanguage: en-US
FormattingLocaleInfo:
RegionalFormat: en-us
ShortDate: M/d/yyyy
LongDate: dddd, MMMM d, yyyy
ShortTime: h:mm tt
LongTime: h:mm:ss tt
Calendar: 1
FirstDayOfWeek: 0
TimeZone: Asia/Shanghai TimeZone Offset: -480
Ring: ring3_9
Virtualization: vdi-av-wvd
vdiMode: 5100
Logged in users:
TId:72f988bf-86f1-41af-91ab-2d7cd011db47 OId:9cca00ff-7d4a-43ba-94d4-f7540657ab1f UserId:9cca00ff-7d4a-43ba-94d4-f7540657ab1f
Latest errors for Core
2025-07-23T04:44:27.737Z Err ErrorStateProvider: error code: UnhandledPromiseRejection
2025-07-23T04:44:27.737Z Err ErrorStateProvider: file source: undefined
2025-07-23T04:44:27.737Z Err ErrorStateProvider: stack: Error: RPC call failed with hr=0x80070032
at e.onRpcResponse (https://statics.teams.cdn.office.net/teams-modular-packages/hashed-assets/962131-8ba892094427c610.js:1:133948)
at H.onRpcResponse (https://statics.teams.cdn.office.net/teams-modular-packages/hashed-assets/962131-8ba892094427c610.js:1:128452)
at H.onWebSocketMessage (https://statics.teams.cdn.office.net/teams-modular-packages/hashed-assets/962131-8ba892094427c610.js:1:126311)
at H.onWebSocketMessageFunct...
2025-07-23T04:44:27.737Z Err ErrorStateProvider: extractedError: {"name":"Error","message":"RPC call failed with hr=0x80070032","stack":["Error: RPC call failed with hr=0x80070032","at e.onRpcResponse (https://statics.teams.cdn.office.net/teams-modular-packages/hashed-assets/962131-8ba892094427c610.js:1:133948)","at H.onRpcResponse (https://statics.teams.cdn.office.net/teams-modular-packages/hashed-assets/962131-8ba892094427c610.js:1:128452)","at H.onWebSocketMessage (https://statics.teams.cdn.office.net/teams-modular-packages/hashed-...
2025-07-23T04:44:27.737Z Err ErrorStateProvider: showOops: false, errors: [lineno:undefined;colno:undefined]
Latest errors for 9cca00ff-7d4a-43ba-94d4-f7540657ab1f
2025-07-23T04:48:17.244Z Err resolverUncaughtErrorBoundary__doNotAssignToGraphQLTeam: Uncaught error in a GraphQL resolver for operation "installSideLoadApp", at field selection path "installSideLoadApp" - {"message":"installSideLoadApp failed: {\"name\":\"TypeError\",\"message\":\"Cannot read properties of undefined (reading 'id')\",\"stack\":[]}","locations":[{"line":2,"column":3}],"path":["installSideLoadApp"],"extensions":{"type":"UnknownError","code":"NONE","prevError":{"context":"installSideLoadApp","subContext":"","code":"Unknow...
2025-07-23T04:48:17.244Z Err resolverUncaughtErrorBoundary__doNotAssignToGraphQLTeam: Uncaught error in a GraphQL resolver for operation "installSideLoadApp", at field selection path "installSideLoadApp"
2025-07-23T04:47:54.586Z Err CID[5636f4f9-ea69-44a1-a339-d249f22d6a4f] Entities Hierarchy helpers: Someone is trying to access a parent entity, current entity: mainEntity is requesting mainEntity, fieldsToMatch: action: view & type: extensions
2025-07-23T04:47:54.554Z Err CID[5636f4f9-ea69-44a1-a339-d249f22d6a4f] Entities Hierarchy helpers: Someone is trying to access a parent entity, current entity: mainEntity is requesting mainEntity, fieldsToMatch: action: view & type: extensions
2025-07-23T04:44:29.646Z Err hidDevice: 7 errors occurred while checking for display support
manifest.json:
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.22/MicrosoftTeams.schema.json",
"manifestVersion": "1.22",
"version": "1.0.0",
"id": "10fcb771-07ca-4723-bf73-78940476e330",
"developer": {
"name": "Microsoft",
"websiteUrl": "https://www.microsoft.com",
"privacyUrl": "https://www.microsoft.com/privacy",
"termsOfUseUrl": "https://www.microsoft.com/termsofuse"
},
"name": {
"short": "RSC Sample",
"full": "Channel messages with RSC"
},
"description": {
"short": "Bot receives all Teams channel messages using RSC permissions.",
"full": "This bot can capture all channel messages in Teams using RSC permissions, without the need for @mentions."
},
"icons": {
"outline": "outline.png",
"color": "color.png"
},
"bots": [
{
"botId": "3bb17b39-fb90-4abd-a1d8-05d4c43c1b0e",
"scopes": [
"team",
"personal",
"groupChat"
],
"isNotificationOnly": false
}
],
"accentColor": "#60A18E",
"permissions": [ "identity", "messageTeamMembers" ],
"validDomains": [
"${{BOT_DOMAIN}}",
"token.botframework.com"
],
"webApplicationInfo": {
"id": "3bb17b39-fb90-4abd-a1d8-05d4c43c1b0e",
"resource": "https://AnyString"
},
"authorization": {
"permissions": {
"resourceSpecific": [
{
"type": "Application",
"name": "ChannelMessage.Read.Group"
},
{
"type": "Application",
"name": "ChatMessage.Read.Chat"
}
]
}
}
}