Jump to content
Posted
  • Popular Post
comment_35854

Whatsapp Gateway | Multi Device


This script has been completely modified and many important features and fixes have been added by @Magd Almuntaser
He is now responsible for the updates of this script and has full intellectual property rights
So no one will violate the terms of use that he has set

Latest Features:
1. WhatsApp Account Connectivity

All types of WhatsApp Accounts to be able to connect with WhatsApp Gateway (Multi Number & Multi Device);
Ease of the WhatsApp Account connectivity process with a QRcode Scan or with an Authentication Code directly from your device.

2. Message

Availability of various types of (text messages, media, polls, lists, locations, VCard) can easily be used by you;
You can send mass messages for your marketing campaign activities, promotions or business programs easily and on a scheduled basis;
Setup automatic message replies with more natural (alami) and selected keywords for operational optimization of use;
Manage sent message history with automatic and scheduled deletions.

4. Integration

You can easily integrate your WhatsApp Account with various (AI) artificial intelligence services, namely ChatGPT, DALL-E, Gemini, and Cloude with API authentication codes only;
You can easily activate Ai for Single or Multiple use on your WhatsApp Account;
You can easily select Ai in your WhatsApp messages for WhatsApp Group, Private, or Both types;
You can easily setup call rejection automatically if there is a (Call) call and provide a specific response or information;
Setup your WhatsApp and Ai accounts more naturally (alami) with "Already read" status";
Setup your WhatsApp and Ai accounts more naturally (natural) with the status "Typing...".
You can easily integrate and communicate your services with the Webhook mechanism of WhatsApp Gateway | Multi Device.

5. Application Settings

Nowadays you can easily and quickly carry out the process of setting up the WhatsApp Gateway | Multi Device* application by Magd Almuntaser with the settings panel;
You can easily set up applications based on server ecosystem, smtp, etc quickly;
Multi language support (english, Indonesian, Indian, Spanish and Arabic) for easy use.

6. Developer Options

Currently WhatsApp Gateway | Multi Device* by Magd Almuntaser has provided various API services for your easy development consisting of:
        1). Send Message API
        2). Send Media API
        3). Send Poll API
        4). API Send Button
        5). Send API Templates
        6). Send List message API
        7). Send Location API
        8). Send VCard API
        9). Generate QR API
        10). Disconnect devices
        11). Create User API
        12). User Info API
        13). Device Info API
        14). Check Number API
        15). Webhook Example

Ease of setup and availability of the (API Key) API Key for authentication and authorization of your development process.

7. Security

Currently there is a 2 factor authentication (2FA) service available to maintain the security and comfort of application access;
A password reset service is available if you forget your account login information.


Coming Soon:

1. Landing page for Software as Service services (Subscription Services);
2. Payment gateway page management (QRIS, BCA virtual account, PayPal, Stripe);
3. Added user account management;
4. (ticket) obstacle reporting service for users and managers;
.. And many more.


 

  • Replies 4.1k
  • Views 247.5k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • Magd Almuntaser
    Magd Almuntaser

    What's new in version 9.0.0 so far: - Added landing page (welcome page). - Added plans system. - Added cronjob page. - Added Multi-Keyword in autoreply. - Added send message with footer. -

  • Magd Almuntaser
    Magd Almuntaser

    This version will not be released soon, because there are many people who violate rights without permission.. I told everyone to use the script for free, but if you want to sell the version or redev

  • Magd Almuntaser
    Magd Almuntaser

    Today the version will be released, and this is what's new in version 8.5.0: - Added send sticker feature. - Added wysiwyg whatsapp (text editing tools). - Added location, vcard, sticker in camp

Posted Images

Featured Replies

comment_80776
19 hours ago, Gusik Prasetyo said:

The message appear, select phonebook first then add contact

Om Gusik, mau tanya, ini biar bisa balas dari nomor apapun yang chat ke sender, untuk number harus kita isi apa ya?

function sendWaText(number, messagetosend) {
  var APIKey = "Hcu8aDaGnxI6Utf9kWjQsjlpX5taFy" //ganti dengan API
  var sender = "628xxxxxxxxxx"  // ganti nomer HP
  var url = "https://websitekamu/send-message"; //ganti website
  var msgtext = {
    'api_key': APIKey,
    'sender': sender,
    "number": number,
    'message': messagetosend,
    };

Edited by adhiete

comment_80791
4 hours ago, adhiete said:

Om Gusik, mau tanya, ini biar bisa balas dari nomor apapun yang chat ke sender, untuk number harus kita isi apa ya?

function sendWaText(number, messagetosend) {
  var APIKey = "Hcu8aDaGnxI6Utf9kWjQsjlpX5taFy" //ganti dengan API
  var sender = "628xxxxxxxxxx"  // ganti nomer HP
  var url = "https://websitekamu/send-message"; //ganti website
  var msgtext = {
    'api_key': APIKey,
    'sender': sender,
    "number": number,
    'message': messagetosend,
    };

g bisa om, d versi ini belum bisa rotasi nomer. jadi yg balas dari nomer yang d tentukan aja. di versi yang akan datang sepertinya bisa rotasi nomer.

comment_80827
10 hours ago, adhiete said:

Om Gusik, mau tanya, ini biar bisa balas dari nomor apapun yang chat ke sender, untuk number harus kita isi apa ya?

function sendWaText(number, messagetosend) {
  var APIKey = "Hcu8aDaGnxI6Utf9kWjQsjlpX5taFy" //ganti dengan API
  var sender = "628xxxxxxxxxx"  // ganti nomer HP
  var url = "https://websitekamu/send-message"; //ganti website
  var msgtext = {
    'api_key': APIKey,
    'sender': sender,
    "number": number,
    'message': messagetosend,
    };

Coba begini om..
 

function sendWaText(number, messagetosend) {
  const senders = [
    "628xxxxxxxxxx1", 
    "628xxxxxxxxxx2", 
    "628xxxxxxxxxx3"
  ]; //beberapa nomor sender yang konek dengan api key yang sama

  const randomIndex = Math.floor(Math.random() * senders.length);
  const sender = senders[randomIndex]; //random nomor sender

  const APIKey = "Hcu8aDaGnxI6Utf9kWjQsjlpX5taFy"; // Ganti dengan API
  const url = "https://websitekamu/send-message"; // Ganti website

  const msgtext = {
    'api_key': APIKey,
    'sender': sender, //nomor sender acak
    "number": number,
    'message': messagetosend,
  };

itu dari script mana om?

comment_80861
1 hour ago, Dammah Sifla said:

Coba begini om..
 

function sendWaText(number, messagetosend) {
  const senders = [
    "628xxxxxxxxxx1", 
    "628xxxxxxxxxx2", 
    "628xxxxxxxxxx3"
  ]; //beberapa nomor sender yang konek dengan api key yang sama

  const randomIndex = Math.floor(Math.random() * senders.length);
  const sender = senders[randomIndex]; //random nomor sender

  const APIKey = "Hcu8aDaGnxI6Utf9kWjQsjlpX5taFy"; // Ganti dengan API
  const url = "https://websitekamu/send-message"; // Ganti website

  const msgtext = {
    'api_key': APIKey,
    'sender': sender, //nomor sender acak
    "number": number,
    'message': messagetosend,
  };

itu dari script mana om?

Itu om dam, script autoreply dari googlesheet ntar d pasang d webhook

 

 

comment_80871

Hello, i want to suggest something please add multi reply for same trigger message lets suppose i want to add many messages including media, sticker, text so we can with one trigger for now we can create only one trigger with one thing, but sometimes we need to create multi images/videos and text

comment_80970

@Gusik Prasetyo maksud ane si pengirimnya (lawan bicara chatnya, bukan sender) Om Gusik. Biar bisa reply to all.

Kalau sendernya sih ane maunya satu aj yang sudah ane tentuin.
Om Gusik itu scriptnya masih belum bisa kirim ya yang dulu Om kirim. Lupa halaman berapa gitu.

@Dammah Sifla ane mau cobain dulu, soalnya kalau numbernya engga di definisikan pasti error.

  const msgtext = {
    'api_key': APIKey,
    'sender': sender, //nomor sender acak
    "number": number, <<<------- ini maunya semua yang chat ke sender engga perlu numbernya di definisikan, Om.
    'message': messagetosend,
  

maksud ane itu Om Dam. Jadi semua yang chat (semua nomor yang chat ke sender) dibalas dengan apa yang sudah ane definisikan.
Scriptnya ada lengkapnya engga Om, scriptnya gagal test kirim.

 

@adriano  you install on VPS, Bro? if yes, just change .env on root your host folder. To this,

APP_URL=https://yourwebsite
WA_URL_SERVER=https://yourwebsite:yournodeport
Because i solved mine with this.

Edited by adhiete

comment_80976
2 hours ago, adhiete said:

@Gusik Prasetyo maksud ane si pengirimnya (lawan bicara chatnya, bukan sender) Om Gusik. Biar bisa reply to all.

Kalau sendernya sih ane maunya satu aj yang sudah ane tentuin.
Om Gusik itu scriptnya masih belum bisa kirim ya yang dulu Om kirim. Lupa halaman berapa gitu.

@Dammah Sifla ane mau cobain dulu, soalnya kalau numbernya engga di definisikan pasti error.

  const msgtext = {
    'api_key': APIKey,
    'sender': sender, //nomor sender acak
    "number": number, <<<------- ini maunya semua yang chat ke sender engga perlu numbernya di definisikan, Om.
    'message': messagetosend,
  

maksud ane itu Om Dam. Jadi semua yang chat (semua nomor yang chat ke sender) dibalas dengan apa yang sudah ane definisikan.
Scriptnya ada lengkapnya engga Om, scriptnya gagal test kirim.

 

harusnya nomor penerima itu udah automatis om, krn dia melalui incommingMessage to Webhook dari MPWA.
lihat script lengkapnya om..

function doPost(e) {
    var data =  e.postData.contents;
    var json = JSON.parse(data);
    var number = json['from'];
    var senderMessage = json['message'];
    var file = json['bufferImage'];
    var pesan = senderMessage.toLowerCase();
    var newMessage = pesan.split(" ");
    var searchreply = autoreply(newMessage[0]);
    var type = searchreply[1];
    var messagetosend = searchreply[2];
    var file = searchreply[3];
    if(type == "file"){
        sendWaFile(number, messagetosend, file);
    } else if(type == "button") {
        sendWaButton(number, messagetosend, file);
    } else if(type == "list") {
        sendWaList(number, messagetosend, file);        
    } else {
        sendWaText(number, messagetosend); // <-- variabel number
    }
}

function sendWaText(number, messagetosend) { // <-- variabel number
  var APIKey = "Hcu8aDaGnxI6Utf9kWjQsjlpX5taFy" //ganti dengan API
  var sender = "628xxxxxxxxxx"  // ganti nomer HP
  var url = "https://websitekamu/send-message"; //ganti website
  var msgtext = {
    'api_key': APIKey,
    'sender': sender,
    "number": number, // <-- variabel number sudah automatis beda dengan sender
    'message': messagetosend,
    };
  var response = UrlFetchApp.fetch(url, {
    "method": "POST",
    "contentType": "application/json",
    "payload" : JSON.stringify(msgtext),
      });
    Logger.log(response.getContentText());
}

kalau gagal kirim coba periksa lagi variabel nya.. cek log errornya

comment_80978
43 minutes ago, Hit Solanki said:

Having trouble installing node.js.

Please explain me the correct and correct method to install node.js.
and node.js. Which version of would be suitable

Are you using it on Cpanel or other panels?
Compatible version of node.js in my opinion is version 18 and above..

comment_80979
14 minutes ago, Dammah Sifla said:

harusnya nomor penerima itu udah automatis om, krn dia melalui incommingMessage to Webhook dari MPWA.
lihat script lengkapnya om..

function doPost(e) {
    var data =  e.postData.contents;
    var json = JSON.parse(data);
    var number = json['from'];
    var senderMessage = json['message'];
    var file = json['bufferImage'];
    var pesan = senderMessage.toLowerCase();
    var newMessage = pesan.split(" ");
    var searchreply = autoreply(newMessage[0]);
    var type = searchreply[1];
    var messagetosend = searchreply[2];
    var file = searchreply[3];
    if(type == "file"){
        sendWaFile(number, messagetosend, file);
    } else if(type == "button") {
        sendWaButton(number, messagetosend, file);
    } else if(type == "list") {
        sendWaList(number, messagetosend, file);        
    } else {
        sendWaText(number, messagetosend); // <-- variabel number
    }
}

function sendWaText(number, messagetosend) { // <-- variabel number
  var APIKey = "Hcu8aDaGnxI6Utf9kWjQsjlpX5taFy" //ganti dengan API
  var sender = "628xxxxxxxxxx"  // ganti nomer HP
  var url = "https://websitekamu/send-message"; //ganti website
  var msgtext = {
    'api_key': APIKey,
    'sender': sender,
    "number": number, // <-- variabel number sudah automatis beda dengan sender
    'message': messagetosend,
    };
  var response = UrlFetchApp.fetch(url, {
    "method": "POST",
    "contentType": "application/json",
    "payload" : JSON.stringify(msgtext),
      });
    Logger.log(response.getContentText());
}

kalau gagal kirim coba periksa lagi variabel nya.. cek log errornya

Bahhhh, aneh, akhirnya jalan juga Om wakakaka. Asemmmmm. Argghhhh udah dua mingguan utak atik. Grrrr....
Baru jalan ini tadi Om Dam. Makasih banyak. Kayanya ada salah di tanda mungkin ya.
 

57 minutes ago, Hit Solanki said:

Having trouble installing node.js.

Please explain me the correct and correct method to install node.js.
and node.js. Which version of would be suitable

Install on VPS? cPanel? AAPanel? or?
Node 18 or above is ok. I'm using 20 on my VPS.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.


Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Recently Browsing 2

Latest Updated Files