Messenger回发按钮不会触发对NodeJs服务器的发帖请求。
在CentOS 7上运行的NodeJ。试图将每个请求都转储到服务器,却一无所获。
// request object
{
attachment: {
type: "template",
payload : {
template_type: "button",
text: "Welcome you here!",
buttons: [{
type: "postback",
title: "Do tests",
payload: "do_test"
}]
}
}
}
服务器应该收到POST请求,但是我什么也没有...
知道了!回发按钮与快速回复按钮的工作方式不同。它不会在其请求中发送消息。我在这一点上弄错了。