我正在尝试从聊天机器人中的自适应卡中检索数据,但是我不确定该怎么做。
我已经使用自适应卡设计器创建了一个自适应卡,并使其成功显示在聊天机器人中,但是希望一旦选择“提交”后就能够检索用户输入的数据。
我认为这与我没有要发送的消息的终结点有关,但是我不确定如何声明一个终结点。
感谢您的帮助!
C#
private async Task choiceCAIAResult(IDialogContext context, IAwaitable<string> result)
{
string message = await result;
if (message == "Yes")
{
var replyMessage = context.MakeMessage();
CreateAdaptiveCardApplicationJson(context, result);
// replyMessage.Attachments = new List<Attachment> { attachment };
// await context.PostAsync(replyMessage);
}
if (message == "No")
{
var replyMessage = context.MakeMessage();
Attachment attachment = GetCAIAHeroCard();
replyMessage.Attachments = new List<Attachment> { attachment };
await context.PostAsync(replyMessage);
}
}
private async Task CreateAdaptiveCardApplicationJson(IDialogContext context, IAwaitable<string> result)
{
var returnMessage = context.MakeMessage();
var json = await GetCardText("adaptiveCard");
var results = AdaptiveCard.FromJson(json);
var card = results.Card;
returnMessage.Attachments.Add(new Attachment()
{
Content = card,
ContentType = AdaptiveCard.ContentType,
Name = "Card",
});
card.Actions.Add(new AdaptiveSubmitAction() {
Title = "Next",
});
Debug.WriteLine(returnMessage.Attachments[0].Content);
await context.PostAsync(returnMessage);
}
public async Task<string> GetCardText(string cardName)
{
var path = HostingEnvironment.MapPath($"/Dialogs/{cardName}.json");
if (!File.Exists(path))
return string.Empty;
using (var f = File.OpenText(path))
{
return await f.ReadToEndAsync();
}
}
JSON
{ "type": "AdaptiveCard", "body": [
{
"type": "TextBlock",
"horizontalAlignment": "Center",
"size": "Large",
"text": "Residential Aged Care Online Application Form",
"wrap": true
},
{
"type": "TextBlock",
"size": "Medium",
"text": "Applicant Details"
},
{
"type": "Input.Text",
"id": "firstName",
"placeholder": "First Name"
},
{
"type": "Input.Text",
"id": "lastName",
"placeholder": "Last Name"
},
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"horizontalAlignment": "Left",
"verticalContentAlignment": "Center",
"items": [
{
"type": "TextBlock",
"id": "dobTitle",
"horizontalAlignment": "Right",
"size": "Medium",
"text": "Date of Birth"
}
]
},
{
"type": "Column",
"items": [
{
"type": "Input.Date",
"id": "dob"
}
],
"width": "stretch"
}
]
},
{
"type": "Input.ChoiceSet",
"id": "gender",
"style": "compact",
"placeholder": "Gender",
"choices": [
{
"title": "Female",
"value": "female"
},
{
"title": "Male",
"value": "male"
},
{
"title": "Intersex",
"value": "intersex"
},
{
"title": "Indeterminate",
"value": "indeterminate"
},
{
"title": "Transgender - Female",
"value": "transFemale"
},
{
"title": "Transgender - Male",
"value": "transMale"
},
{
"title": "Other",
"value": "other"
}
]
},
{
"type": "Input.Text",
"id": "street1",
"title": "Street1",
"placeholder": "Street 1"
},
{
"type": "Input.Text",
"id": "city",
"title": "city",
"placeholder": "City"
},
{
"type": "Input.ChoiceSet",
"id": "state",
"style": "compact",
"title": "State",
"placeholder": "State",
"choices": [
{
"title": "SA",
"value": "SA"
},
{
"title": "ACT",
"value": "ACT"
},
{
"title": "NSW",
"value": "NSW"
},
{
"title": "NT",
"value": "NT"
},
{
"title": "QLD",
"value": "QLD"
},
{
"title": "TAS",
"value": "TAS"
},
{
"title": "VIC",
"value": "VIC"
},
{
"title": "WA",
"value": "WA"
},
{
"title": "N/A",
"value": "N/A"
}
]
},
{
"type": "Input.Text",
"id": "postCode",
"title": "PostCode",
"placeholder": "Post Code"
},
{
"type": "Input.Text",
"id": "phone",
"title": "Phone",
"placeholder": "Phone",
"style": "Tel"
},
{
"type": "Input.Text",
"id": "email",
"title": "Email",
"placeholder": "Email",
"style": "Email"
},
{
"type": "Input.ChoiceSet",
"id": "currentAccommodation",
"style": "compact",
"title": "CurrentAccommodation",
"placeholder": "Current Accommodation",
"choices": [
{
"title": "Home",
"value": "home"
},
{
"title": "Hospital",
"value": "hospital"
},
{
"title": "Aged Care",
"value": "agedCare"
},
{
"title": "Other",
"value": "other"
}
]
} ], "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.0"
}
答案 0 :(得分:0)
如前所述,您需要为消息提供一个端点。我已经将自适应卡与RESTful Web服务一起使用,但是可以执行HTTP Post请求的任何Web服务都可以。据我所知,从自适应卡发送数据的唯一方法是使用HTTP POST操作(如果我在这里错了,任何人都可以纠正我)。
您需要查看documentation的“操作”部分,以了解如何操作
这是带有简单提交按钮的JSON包的操作部分:
"actions": [
{
"type": "Action.Http",
"id": "Submit",
"title": "Submit",
"method": "POST",
"url": "webserviceURL",
"body": "{\n \"requestId\": \"testapprove\",\n \"callerId\": \"id\",\n \"requestContent\": \"content\",\n \"responseContent\": \"content\"\n}",
"headers": [
{
"name": "content-type",
"value": "\"application/json; charset=utf-8\""
}
]
}
],
教程:http://www.drdobbs.com/web-development/restful-web-services-a-tutorial/240169069
关于什么是REST的堆栈过低帖子:What are RESTful web services?
您不必在Web服务中使用REST,但是它变得非常普遍。谷歌搜索将带您进入许多有关创建自己的Web服务的教程。
使用旨在接收任何人的POST请求的网站。
这里是您可以用来测试的一个:https://httpbin.org/
另一个:https://docs.postman-echo.com/
如果您只需要在本地发送数据,则可以使用Google“设置本地http服务器”。有很多教程。您选择使用什么可能取决于您的环境和您熟悉的语言。 Here是用于python的一种,它将回显get和post请求。 Here是另一个Python,注释涵盖了如何访问发布的信息。