使用 Node JS 离线保存 Bot Framework 对话和图像

Save Bot Framework conversation and images offline using Node JS

我正在使用 Node JS 和 MS Bot Framework 构建聊天机器人。我可以在聊天客户端中拍照并显示如下:

builder.Prompts.attachment(session, "Upload a picture for me to transform.", {

retryPrompt: 'The value you entered is not a valid picture. Please try again:',

maxRetries: 2 });

有什么方法可以将拍摄的照片保存到 Azure 等存储帐户中?

该机器人是使用 Restify. Connect your application to a database 构建的服务器端网络应用程序,可以像上传任何普通网络应用程序一样将您的图像上传到它。具体实现将取决于您选择的数据库技术and/or ORM 适配器。