Whatsapp API发送文档媒体消息

时间:2019-06-11 14:21:06

标签: image api media document whatsapp

我正在尝试使用Whatsapp Business API发送文档媒体消息 使用LINK而不是上传文件。但是我遇到了以下错误:

"errors":[  
      {  
         "code":1008,
         "title":"Required parameter is missing",
         "details":"Parameter 'id' is mandatory for type 'document'"
      }
   ]

Facebook Request Definition

这是JSON请求对象:

{  
   "recipient_type":"individual",
   "to":"TELEPHONE_NUMBER_HIDDEN",
   "type":"document",
   "document":{  
      "link":"google-drive/https://drive.google.com/open?id=HIDDEN_DOCUMENT_ID",
      "provider":{  
         "name":"google-drive"
      },
      "caption":"CAPTION MESSAGE"
   }
}

你们对此有什么想法吗? 我不能使用Twilio这样的外部服务。

0 个答案:

没有答案
相关问题