我创建了一个具有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);
答案 0 :(得分:0)
Cortana技能套件目前不支持通过Cortana上传文件。但是,您可以通过deep linking解决此问题-在应用程序中添加支持html表单文件上传的功能,并按照在上述文档中调用它的步骤进行操作。
希望这会有所帮助。