Failing to send media via Twilio WhatsApp API using CURL
, I only receive the text message but media is missing.
I been going through Twilio docs for sending media files. The command finishes correctly but on my phone I only receive the message Send Media with Twilio
curl -X POST https://api.twilio.com/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXX/Messages.json --data-urlencode "To=whatsapp:+263000000" --data-urlencode "From=whatsapp:+14155238886" --data-urlencode "Body=Thanks for contacting me on WhatsApp! Here is a picture of an owl." --data-urlencode “MediaUrl=https://demo.twilio.com/owl.png” -u "ACXXXXXXXXXXXXXXXXXXXx:authkey"
It should deliver an image file of owl to recipient in WhatsApp.