0

我正在开发 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。

4

1 回答 1

0

我前两天遇到这个问题。您需要 page_messaging facebook 的批准才能接收它Facebook 的批准 page_messaging 权限

于 2018-02-27T11:08:34.197 回答