如何从机器人读取通过聊天控制(iframe)发送的参数值

时间:2018-10-23 16:53:19

标签: node.js iframe botframework web-chat

我已经将ms bot框架webchat(node js)集成到了网页中。我正在使用iframe传递已登录的用户信息。

例如:如下所示

<iframe id="myFrame" src='https://webchat.botframework.com/embed/
testbot?s=secret_code&username=admin&userid=1234'></iframe>

任何人都可以指导我,如何从bot中读取这些参数值。

谢谢。

1 个答案:

答案 0 :(得分:0)

如果您在iframe的查询参数中提供用户名和用户ID,则活动的.From属性将具有这些值:

<iframe style="width:300px;height:400px;" src='https://webchat.botframework.com/embed/mybotid?s=mybotsecret&username=adminxxx&userid=1234'></iframe>

enter image description here