一次傳送多則訊息
將物件區改為陣列,即可分訊息傳遞
※如果只加{ 文字or變數 },會自動以文字訊息傳送,而如果一次傳送多則訊息時,需要改為 { type: ‘text, text: 文字or變數 },否則程式會有bug對於括弧。
code
sendMessage(event,[
{ type: 'text', text: 'Hello, world 1' },
{ type: 'text', text: 'Hello, world 2' },
{
type: 'template',
altText: 'MuseMaze',
template:
{
type: 'buttons',
thumbnailImageUrl:'https://example.com/bot/images/image.jpg',
title: 'MuseMaze',
text: '想知道更多Muse的日常生活嗎?歡迎瀏覽我們的官方網站和粉絲團!',
actions: [{
type: 'uri',
label: '【MuseMaze 粉絲團】',
uri: 'https://www.facebook.com/MuseMaze.ballaedi'
}, {
type: 'uri',
label: '【MuseMaze 官網】',
uri: 'https://musemaze.ballaedi.com/'
}]
}
}
]);
(以上皆為實際測試研究,如說明有誤請留言或私訊告知我,感謝 !)
張貼留言