我正在开发 fb chatbot 并在通用模板按钮中使用回发。但是,单击回发按钮后没有任何响应。
"buttons": [
{
"type": "web_url",
"url": "https://maps.google.com/?q={lat},{lon}".format(lat=store['coordinates']['lat'], lon=store['coordinates']['lon']),
"title": u"店家位置"
},
{
"type": "postback",
"payload": Function.sendGourmetComments + "_{id}".format(id=store["id"]),
"title": u"觀看評論"
},
{
"type": "postback",
"payload": Function.sendStoreHearts + "_{upload}".format(upload=None) + "_{id}".format(id=store["id"]) + "_{push}".format(push=None) + "_{edit}".format(edit=None) + "_{search}".format(search=True),
"title": u"撰寫評論"
}
]
我想我没有检查 message_postback 事件,但是,我做到了。我什至没有收到来自我的 webhook 的任何响应。所以这对我来说有点神秘。
它以前工作正常,但重新启动我的计算机后它不能正常工作。我正在使用 ngork 将我的服务器 API 公开为回调 url。