无需用户干预即可打开 url 的 Microsoft Bot 框架

microsoft bot framework to open a url without user intervention

有一些英雄卡片或缩略图卡片示例,您可以在其中渲染一个按钮来打开 URL,如下所示

 msg.attachments([ 
        new builder.ThumbnailCard(session)
        .title('Brian Mathew')
        .subtitle('CIO, Logistics')
        .text('San Francisco Bay Area - 30 Mutual Connections')
        .images([
            builder.CardImage.create(session, 'https://media.licdn.com/dms/image/C5103AQHt4Rp2MT0quA/profile-displayphoto-shrink_800_800/0?e=1527022800&v=alpha&t=gQbe7EXQX1S3wYr8QpCjXqeWyKzM0vQWE0M51WGL8n4')
        ])
        .buttons([
            builder.CardAction.openUrl(session, 'https://google.com', 'More Details')
        ])

但是,在我的用例中,我不想显示任何用于显式调用的按钮,只是让用户转到 url。就好像说 Open google.com。我找不到办法做到这一点请建议

正如@JasonSowers 所说,出于明显的安全原因,这是不可能的。

否则它将成为有史以来垃圾邮件最多的功能!