我创建了一个带有Cortana技能的聊天机器人(Microsoft Botframework(,我试图提示用户上传附件。
提示要求用户按照指定上传文件(下面的代码(,但我看不到在 Cortana 中上传文件的可能性。有没有办法做到这一点?多谢!
var dialog = new PromptDialog.PromptAttachment("Please upload the sick
note you received from your doctor.", "Sorry, I didn't get the document.
Try again please.", 2);
context.Call(dialog,this.uploadAttachmentResumeAfter);
Cortana 技能工具包目前不支持通过 Cortana 上传文件。但是,您可以通过深层链接来解决此问题 - 添加支持在应用中上传 html 表单文件的功能,并按照上述文档中的步骤调用它。
希望这有帮助。