[LuisIntent("test-intent")]
public async Task test(IDialogContext context, IAwaitable<IMessageActivity> argument, LuisResult result)
{
await Conversation.SendAsync(context.MakeMessage(), () => SimpleFacebookAuthDialog.dialog);
}
I tried this. But the problem occurs when i try to send simple string message
await context.PostAsync("msg");
from SimpleFacebookAuthDialog. It throws an exception
The data is changed.
context.MakeMessage() and Activity are not the same.
Some help ?