I am using a customised Microsoft Bot Framework WebChat Client. My bot has the capability to hand to a live chat service with an Agent, when it is unable to provide a solution to the user.
I have the requirement to allow the agents to have a "sneak peek" at what is currently being typed into the Webchat Client.
I have enabled the sendTyping feature in chat.html (i.e. sendTyping: true):
BotChat.App({
bot: bot,
botConnection: botConnection,
locale: 'agent',
resize: 'window',
sendTyping: true, // defaults to false. set to true to send 'typing' activities to bot (and other users) when user is typing
user: user
}, document.getElementById('BotChatGoesHere')
);
When inspecting the outbound typing message, the typing event is sent (debounced about every three seconds or so), however it contains no text. I suspect this is not a feature, however I would kindly ask the community if anyone has done this previously and if so how to implement?
Thanks in advance.