如何完成机器人身份验证对话框

How to finish the bot-authentication dialog

我正在使用 bot-auth 示例,在用户登录后我需要能够与用户交互,在我的例子中我想从回声开始。我找不到结束对话和让机器人开始回答用户的方法。你能用一个例子或想法来指导我吗?谢谢

我不需要显示令牌,所以此时我就可以完成这里并开始与用户交互

main_dialog.py

async def login_step(self, step_context: WaterfallStepContext) -> DialogTurnResult:
    # Get the token from the previous step. Note that we could also have gotten the
    # token directly from the prompt itself. There is an example of this in the next method.
    if step_context.result:
        await step_context.context.send_activity("You are now logged in.")
        return await step_context.prompt(
            ConfirmPrompt.__name__,
            PromptOptions(
                prompt=MessageFactory.text("Would you like to view your token?")
            ),
        )

    await step_context.context.send_activity(
        "Login was not successful please try again."
    )
    return await step_context.end_dialog()

我可以实现我的目标,一旦完成用户登录就可以开始,例如,使用 echo_botqna_bot。问题是我无法退出登录显示令牌对话框循环。 “我发现”的解决方案是在 main_dialog.py 中创建一个 user_state.create_property() 并访问 get(turn_context)[=23= 中定义的属性]。这样我就可以离开对话了。