我正在处理来自调解员的收件箱项目。我的用例是,我要删除无法在应用程序中处理的消息,基本上是中介程序,以停止将其报告为“未读”。
这是我用来删除邮件的代码:
var deleteMessage = new DeleteInboxItemsMessage() {InboxItemIds = itemsToDelete};
var response =
await _messageService.SendReceiveAsync(context.Wallet, deleteMessage, this.Entry.Connection.Record);
这是响应:
"@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/notification/1.0/problem-report",
"@id": "9d76f203-fac9-43c0-9ba7-371f35b55f33",
"~thread": {
"thid": "ca58d255-2d4f-4801-bad7-06f446e2de19"
},
"explain-ltxt": "Unrecognized message type did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/basic-routing/1.0/delete-inbox-items"
}
我在这里可以改善什么?还是这是某种配置对调解器的限制。
谢谢。