Hantar API WhatsApp menggunakan Wget

pengenalan

Dalam coretan kod ini, anda belajar cara menghantar API WhatsApp menggunakan Wget, untuk menghantar mesej teks, Templat WhatsApp, media, butang interaktif, senarai, produk … dll, akaun Alvochat diperlukan untuk menjalankan kod berikut. Buat Akaun jika anda tidak mempunyainya.

Hantar templat menggunakan API WhatsApp

wget --quiet \
  --method POST \
  --header 'content-type:application/x-www-form-urlencoded' \
  --body-data 'token=YourToken&to=16315555555&name=hello_world&language=en_us&header=&body=&buttons=&priority=' \
  --output-document \
  - https://api.alvochat.com/instance1199/messages/template

Hantar mesej teks menggunakan API WhatsApp

wget --quiet \
  --method POST \
  --header 'content-type:application/x-www-form-urlencoded' \
  --body-data 'token=YourToken&to=16315555555&body=WhatsApp API on alvochat.com works good&priority=&preview_url=&message_id=' \
  --output-document \
  - https://api.alvochat.com/instance1199/messages/chat

Hantar imej

wget --quiet \
  --method POST \
  --header 'content-type:application/x-www-form-urlencoded' \
  --body-data 'token=YourToken&to=16315555555&image=https://alvochat-example.s3-accelerate.amazonaws.com/image/1.jpeg&caption=image caption&priority=&message_id=' \
  --output-document \
  - https://api.alvochat.com/instance1199/messages/image

Hantar audio

wget --quiet \
  --method POST \
  --header 'content-type:application/x-www-form-urlencoded' \
  --body-data 'token=YourToken&to=16315555555&audio=https://alvochat-example.s3-accelerate.amazonaws.com/audio/1.mp3&priority=&message_id=' \
  --output-document \
  - https://api.alvochat.com/instance1199/messages/audio

Hantar video

wget --quiet \
  --method POST \
  --header 'content-type:application/x-www-form-urlencoded' \
  --body-data 'token=YourToken&to=16315555555&video=https://alvochat-example.s3-accelerate.amazonaws.com/video/1.mp4&caption=video caption&priority=&message_id=' \
  --output-document \
  - https://api.alvochat.com/instance1199/messages/video

Hantar dokumen

wget --quiet \
  --method POST \
  --header 'content-type:application/x-www-form-urlencoded' \
  --body-data 'token=YourToken&to=16315555555&document=https://alvochat-example.s3-accelerate.amazonaws.com/document/1.pdf&filename=&priority=&message_id=' \
  --output-document \
  - https://api.alvochat.com/instance1199/messages/document

Hantar pelekat

wget --quiet \
  --method POST \
  --header 'content-type:application/x-www-form-urlencoded' \
  --body-data 'token=YourToken&to=16315555555&sticker=https://alvochat-example.s3-accelerate.amazonaws.com/sticker/1.webp&priority=&message_id=' \
  --output-document \
  - https://api.alvochat.com/instance1199/messages/sticker

Hantar Kenalan

wget --quiet \
  --method POST \
  --header 'content-type:application/x-www-form-urlencoded' \
  --body-data 'token=YourToken&to=16315555555&contact=&priority=&message_id=' \
  --output-document \
  - https://api.alvochat.com/instance1199/messages/contact

Hantar Lokasi

wget --quiet \
  --method POST \
  --header 'content-type:application/x-www-form-urlencoded' \
  --body-data 'token=YourToken&to=16315555555&lat=37.484296&lng=-122.148703&address=Menlo Park, California, United States&name=Meta Headquarters&priority=&message_id=' \
  --output-document \
  - https://api.alvochat.com/instance1199/messages/location

Hantar senarai

wget --quiet \
  --method POST \
  --header 'content-type:application/x-www-form-urlencoded' \
  --body-data 'token=YourToken&to=16315555555&header=header&body= please select one of the following options&footer=footer&button=options§ions=option_1,option_2,option_3&priority=&message_id=' \
  --output-document \
  - https://api.alvochat.com/instance1199/messages/list

Butang hantar

wget --quiet \
  --method POST \
  --header 'content-type:application/x-www-form-urlencoded' \
  --body-data 'token=YourToken&to=16315555555&header=header&body= please select one of the following options&footer=footer&buttons=option_1,option_2,option_3&priority=&message_id=' \
  --output-document \
  - https://api.alvochat.com/instance1199/messages/button

Hantar produk

wget --quiet \
  --method POST \
  --header 'content-type:application/x-www-form-urlencoded' \
  --body-data 'token=YourToken&to=16315555555&header=header&body=Hi , check out our new products&footer=footer&catalog_id=&product=&priority=&message_id=' \
  --output-document \
  - https://api.alvochat.com/instance1199/messages/product

Anda boleh melihat Dokumentasi API Whatsapp Penuh di sini .