vbscript VB版推送模板消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vbscript VB版推送模板消息相关的知识,希望对你有一定的参考价值。


        '建立Bot instance
        Dim bot As New isRock.LineBot.Bot(Token)
        '傳入Channel access token
        '建立actions,作為ButtonTemplate的用戶回覆行為
        Dim actions = New List(Of isRock.LineBot.TemplateActionBase)()
        actions.Add(New isRock.LineBot.MessageActon() With {
          .label = "標題-文字回覆",
           .text = "回覆文字"
        })
        actions.Add(New isRock.LineBot.UriActon() With {
           .label = "標題-開啟URL",
            .uri = New Uri("http://www.google.com")
        })
        actions.Add(New isRock.LineBot.PostbackActon() With {
            .label = "標題-發生postack",
            .data = "abc=aaa&def=111"
        })

        '單一Button Template Message
        '設定圖片
        '設定回覆動作
        Dim ButtonTemplate = New isRock.LineBot.ButtonsTemplate() With {
            .text = "ButtonsTemplate文字訊息",
            .title = "ButtonsTemplate標題",
            .thumbnailImageUrl = New Uri("https://arock.blob.core.windows.net/test3/testimage.png"),
            .actions = actions
        }
        '發送
        bot.PushMessage(ToUserId, ButtonTemplate)

以上是关于vbscript VB版推送模板消息的主要内容,如果未能解决你的问题,请参考以下文章

Pushwoosh,使用 vb.net 和 json 发送推送消息

消息推送之微信模板消息

如何将值从Visual Basic 6程序传递给VBscript代码?

微信公众号模板消息推送

借助云开发实现小程序订阅消息(模板消息)推送功能

VBScript 知识体系