In the test web chat in azure portal, I get the bot to speak back to me the conversation id by getting it from session.message.address.conversation.id.
I wish to then view activities for this conversation id using the method described here:
(POST https://directline.botframework.com/v3/directline/conversations/abc123/activities )
However, I get the following error:
{
"error": {
"code": "BadArgument",
"message": "Unknown conversation"
}
}
I have also tried:
Any help on how I can use direct line to post/view activities for a webchat?
Thanks!