0
スノーキにカルーセルメッセージを送信しています。カルーセルはスムージーのテキストとしてレンダリングされていますが、Facebookのメッセンジャーカルーセルはレンダリングされます。 smooch web messangerのカルーセルが必要です。ここでカルーセルメッセージを送信しますが、テキストとしてスムーズレンダリングします。説明リンクのみ
は、執筆時点でJSON
msg = {
"role": 'appMaker',
"type": 'carousel',
"items": [{
"title": 'Tacos',
"description": 'Description',
"mediaUrl": 'https://example.com/img.png',
"actions": [{
"text": 'Select',
"type": 'postback',
"payload": 'TACOS'
}, {
"text": 'More info',
"type": 'link',
"uri": 'https://example.com'
}]
}, {
"title": 'Ramen',
"description": 'Description',
"mediaUrl": 'https://example.com/img.png',
"actions": [{
"text": 'Select',
"type": 'postback',
"payload": 'RAMEN'
}, {
"text": 'More info',
"type": 'link',
"uri": 'https://example.com'
}]
}]
}
まだWeb SDKにカルーセルをサポートしていませんか? – Rhangaun