将 WABA 订阅到应用程序后,Webhook 未触发

问题描述 投票:0回答:0

为了将 WhatsApp Business 与应用程序连接起来,我使用嵌入 singup 流程。

一切似乎都很好 - 我使用

subscribed_apps
端点并获得成功的响应:

curl --location --request POST 'https://graph.facebook.com/v18.0/[WABA_ID]/subscribed_apps' \
--header 'Authorization: Bearer [TOKEN]'

回应:

{
    "success": true
}

当我通过“GET”检查此端点时 - 我还看到我的应用程序已正确配置:

{
    "data": [
        {
            "whatsapp_business_api_data": {
                "link": "....",
                "name": "My Provider App",
                "id": "...."
            }
        }
    ]
}

当我向连接到此帐户的 WhatsApp 号码发送消息时,Webhook 不会触发(尽管它已明确定义并经过正确测试)。

可能是什么原因导致了这个问题?

webhooks facebook-webhooks whatsapp-cloud-api
© www.soinside.com 2019 - 2024. All rights reserved.