我是facebook messenger机器人的新手。我想发送带图像的登录按钮,但我无法弄清楚如何。
if (received_message.text) {
response = {
"attachment":{
"type":"template",
"payload":{
"template_type":"button",
"text":"my_text",
"buttons":[
{
"type": "account_link",
"url": "my_link.com/login"
}
]
}
}
}
}
我知道有一个image_url属性,但我不知道放在哪里
由于
答案 0 :(得分:0)