Come inviare un’API WhatsApp usando jQuery

Introduzione

In questo frammento di codice, imparerete come inviare un’API WhatsApp utilizzando jQuery, per inviare un messaggio di testo, modelli WhatsApp, media, pulsanti interattivi, elenchi, prodotti … ecc, è necessario un account Alvochat per eseguire i seguenti codici. Create un account se non ne avete uno.

Inviare un modello utilizzando l’API di WhatsApp con jQuery

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.alvochat.com/instance1199/messages/template",
  "method": "POST",
  "headers": {},
  "data": {
    "token": "YourToken",
    "to": 16315555555,
    "name": "hello_world",
    "language": "en_us",
    "header": "",
    "body": "",
    "buttons": "",
    "priority": ""
}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

Inviare un messaggio di testo utilizzando le API di WhatsApp con jQuery

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.alvochat.com/instance1199/messages/chat",
  "method": "POST",
  "headers": {},
  "data": {
    "token": "YourToken",
    "to": 16315555555,
    "body": "WhatsApp API on alvochat.com works good",
    "priority": "",
    "preview_url": "",
    "message_id": ""
}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

Invia immagine

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.alvochat.com/instance1199/messages/image",
  "method": "POST",
  "headers": {},
  "data": {
    "token": "YourToken",
    "to": 16315555555,
    "image": "https://alvochat-example.s3-accelerate.amazonaws.com/image/1.jpeg",
    "caption": "image caption",
    "priority": "",
    "message_id": ""
}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

Inviare l’audio

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.alvochat.com/instance1199/messages/audio",
  "method": "POST",
  "headers": {},
  "data": {
    "token": "YourToken",
    "to": 16315555555,
    "audio": "https://alvochat-example.s3-accelerate.amazonaws.com/audio/1.mp3",
    "priority": "",
    "message_id": ""
}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

Invia il video

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.alvochat.com/instance1199/messages/video",
  "method": "POST",
  "headers": {},
  "data": {
    "token": "YourToken",
    "to": 16315555555,
    "video": "https://alvochat-example.s3-accelerate.amazonaws.com/video/1.mp4",
    "caption": "video caption",
    "priority": "",
    "message_id": ""
}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

Inviare il documento

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.alvochat.com/instance1199/messages/document",
  "method": "POST",
  "headers": {},
  "data": {
    "token": "YourToken",
    "to": 16315555555,
    "document": "https://alvochat-example.s3-accelerate.amazonaws.com/document/1.pdf",
    "filename": "",
    "priority": "",
    "message_id": ""
}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

Invia l’adesivo

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.alvochat.com/instance1199/messages/sticker",
  "method": "POST",
  "headers": {},
  "data": {
    "token": "YourToken",
    "to": 16315555555,
    "sticker": "https://alvochat-example.s3-accelerate.amazonaws.com/sticker/1.webp",
    "priority": "",
    "message_id": ""
}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

Inviare il contatto

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.alvochat.com/instance1199/messages/contact",
  "method": "POST",
  "headers": {},
  "data": {
    "token": "YourToken",
    "to": 16315555555,
    "contact": "",
    "priority": "",
    "message_id": ""
}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

Invia posizione

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.alvochat.com/instance1199/messages/location",
  "method": "POST",
  "headers": {},
  "data": {
    "token": "YourToken",
    "to": 16315555555,
    "lat": 37.484296000000000503860064782202243804931640625,
    "lng": -122.1487029999999975871105561964213848114013671875,
    "address": "Menlo Park, California, United States",
    "name": "Meta Headquarters",
    "priority": "",
    "message_id": ""
}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

Inviare l’elenco

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.alvochat.com/instance1199/messages/list",
  "method": "POST",
  "headers": {},
  "data": {
    "token": "YourToken",
    "to": 16315555555,
    "header": "header",
    "body": " please select one of the following options",
    "footer": "footer",
    "button": "options",
    "sections": "option_1,option_2,option_3",
    "priority": "",
    "message_id": ""
}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

Pulsante di invio

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.alvochat.com/instance1199/messages/button",
  "method": "POST",
  "headers": {},
  "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": ""
}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

Inviare i prodotti

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.alvochat.com/instance1199/messages/product",
  "method": "POST",
  "headers": {},
  "data": {
    "token": "YourToken",
    "to": 16315555555,
    "header": "header",
    "body": "Hi , check out our new products",
    "footer": "footer",
    "catalog_id": "",
    "product": "",
    "priority": "",
    "message_id": ""
}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

È possibile consultare la documentazione completa dell’API di Whatsapp qui.