在 gupshup 中创建快速回复模板

Create a template with quick reply in gupshup

我正在使用 gupshup API 创建模板和简单模板,并通过号召性用语工作,当尝试使用快速回复创建时,问题就来了。我这样发送数据:

"buttons": [ { "type": "text", "text": "Call" } ],

data: The response of gupShup should of are this: Hello this a test. | [Call]

但只是:

data: The response of gupShup should of are this: Hello this a test.

我的问题是对象如何在 gupShup 中创建一个快速回复的模板 API

您需要更改按钮对象内的类型。

"buttons": [{"type":"QUICK_REPLY","text":"connect here"}],

有 3 种不同类型的按钮:PHONE_NUMBER、URL 和 QUICK_REPLY

您可以在此处找到 facebook 文档:https://developers.facebook.com/docs/whatsapp/business-management-api/message-templates#creating-message-templates

祝你好运!