Image 如何在WhatsApp API URL中添加图像参数

Image 如何在WhatsApp API URL中添加图像参数,image,api,url,parameters,whatsapp,Image,Api,Url,Parameters,Whatsapp,基本上,当用户点击WhatsApp图标聊天时,我想从我的网站向WhatsApp发送一张图片和一些文本 所以我想将用户从我的网站重定向到我的WhatsApp聊天室! 我知道我们可以向WhatsApp API URL添加一个文本参数,如下所示: https://api.whatsapp.com/send?phone=123456789&text=this is a test https://api.whatsapp.com/send?phone=123456789&text=thi

基本上,当用户点击WhatsApp图标聊天时,我想从我的网站向WhatsApp发送一张图片和一些文本

所以我想将用户从我的网站重定向到我的WhatsApp聊天室! 我知道我们可以向WhatsApp API URL添加一个文本参数,如下所示:

https://api.whatsapp.com/send?phone=123456789&text=this is a test
https://api.whatsapp.com/send?phone=123456789&text=this is a test&img=[my-image]
但事实是,我想在URL中添加一个类似于图像参数的文本参数,例如:

https://api.whatsapp.com/send?phone=123456789&text=this is a test
https://api.whatsapp.com/send?phone=123456789&text=this is a test&img=[my-image]

你解决了它,因为我也在寻找这样的答案?