我正在向 smooch 发送轮播消息,轮播在 smooch 中呈现为文本,但在 facebook messenger 中轮播被呈现。需要在 smooch 网络信使中旋转木马。
这是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'
}]
}]
}