处理使用 ADAL (AuthBot) 进行身份验证的 Bot,然后进行身份验证后获取用户输入并发送到 LUIS 以收集意图/实体。我使用返回的内容构建发送到 Sharepoint Online REST API 的 URI。如果用户输入有效,Sharepoint 会返回我解析并返回给用户的 JSON。
问题是在身份验证后将用户输入输入到我的 LUIS 类。我从我的 MessageController 调用 AuthBot ActionDialog。
if (message.Type == "Message")
{
return await Conversation.SendAsync(message, () => new ActionDialog());
}
在 ActionDialog 中,我不确定如何将消息移动到 LUIS 类
public async Task MessageReceivedAsync(IDialogContext context, IAwaitable<Message> item)
{
var message = await item;
if (message.Text == "logon")
{
if (string.IsNullOrEmpty(await context.GetAccessToken(ConfigurationManager.AppSettings["ActiveDirectory.ResourceId"])))
{
await context.Forward(new AzureAuthDialog(ConfigurationManager.AppSettings["ActiveDirectory.ResourceId"]), this.ResumeAfterAuth, message, CancellationToken.None);
}
else
{
context.Wait(MessageReceivedAsync);
}
}
else if (string.IsNullOrEmpty(await context.GetAccessToken(ConfigurationManager.AppSettings["ActiveDirectory.ResourceId"])))
{
await context.Forward(new AzureAuthDialog(ConfigurationManager.AppSettings["ActiveDirectory.ResourceId"]), this.ResumeAfterAuth, message, CancellationToken.None);
}
else
{
//this is where I want to send the next user input from bot to LUIS class.
}
}
LUIS 类是标准的,如下所示:
//Define the LuisModel that will be used. The LuisModel JSON file can be found at ~/json/letseat.json
[LuisModel("ModelID", "ModelSecret")]
[Serializable]
public class LuisDialog : LuisDialog<object>
有任何想法吗?谢谢。