我正在尝试使用Whatsapp Business API发送文档媒体消息 使用LINK而不是上传文件。但是我遇到了以下错误:
"errors":[
{
"code":1008,
"title":"Required parameter is missing",
"details":"Parameter 'id' is mandatory for type 'document'"
}
]
这是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这样的外部服务。