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 248.2k
  • 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

  • Author
comment_74896
42 minutes ago, Pebrian said:
async function sendGemini({
  command,
  senderNumber,
  chatgptKey,
  participantNumber,
}) {
  try {
    const geminiUrl = process.env.GEIMINI_URL;
    const geminiData = {
      contents: [
        {
          parts: [
            { text: `Tolong balas dengan bahasa yang santai: ${command}` }
          ]
        }
      ],
      model_parameters: {
        language: "id-ID" // GANTI KE BAHASA KELEAN
      }
    };
    const headers = {
      'Content-Type': 'application/json'
    };
    
    const response = await axios.post(`${geminiUrl}?key=${chatgptKey}`, geminiData, { headers: headers }).catch(() => {
      return false;
    });

    if (response && response.data && response.data.candidates && response.data.candidates.length > 0) {
      let content = response.data.candidates[0].content.parts[0].text;
      content = content.replace(/["']/g, '');
      let resText = JSON.stringify({ text: content, quoted: false });
      return resText;
    } else {
      return false;
    }
  } catch (error) {
    console.log('error send Gemini', error);
    return false;
  }
}

Gemini lebih santai buat ngebales. udh w coba bahasa nya gak terlalu baku

It's good that you modified it for you, but I removed all these options to make it universal for all people for English, Arabic, Indonesian and other languages 👍

9 minutes ago, Upal Mukherjee said:

Hey can I get the link to the 7.0.0.5 or 7.0.0.6?

I will replace the server.js with the 7.0.0.4 version or whatever you have stable.

Thanking you in advance!

Look at my signature on any post I write and you'll find the link. Look at the bottom of my post 👇

comment_74897
3 minutes ago, Magd Almuntaser said:

It's good that you modified it for you, but I removed all these options to make it universal for all people for English, Arabic, Indonesian and other languages 👍

Look at my signature on any post I write and you'll find the link. Look at the bottom of my post 👇

I can only find v7.0.0.2 😞

comment_74901
38 minutes ago, Magd Almuntaser said:

i've update my signature you can check again

Any way to get the OpenAI?

I can see everything apart from that.

Edit: Found it!

Edited by Upal Mukherjee

comment_74903
2 hours ago, Pebrian said:
async function sendGemini({
  command,
  senderNumber,
  chatgptKey,
  participantNumber,
}) {
  try {
    const geminiUrl = process.env.GEIMINI_URL;
    const geminiData = {
      contents: [
        {
          parts: [
            { text: `Tolong balas dengan bahasa yang santai: ${command}` }
          ]
        }
      ],
      model_parameters: {
        language: "id-ID" // GANTI KE BAHASA KELEAN
      }
    };
    const headers = {
      'Content-Type': 'application/json'
    };
    
    const response = await axios.post(`${geminiUrl}?key=${chatgptKey}`, geminiData, { headers: headers }).catch(() => {
      return false;
    });

    if (response && response.data && response.data.candidates && response.data.candidates.length > 0) {
      let content = response.data.candidates[0].content.parts[0].text;
      content = content.replace(/["']/g, '');
      let resText = JSON.stringify({ text: content, quoted: false });
      return resText;
    } else {
      return false;
    }
  } catch (error) {
    console.log('error send Gemini', error);
    return false;
  }
}

Gemini lebih santai buat ngebales. udh w coba bahasa nya gak terlalu baku

penerapannya ini gmn? sy ga ngerti

comment_74907

Sallam, saya sudah mengikuti update dan sudah menggunakan v7...5, ai bot belum berfungsi, adakah node atau cron settingan yang tepat?

Boleh tunjukkan postingan yang tepat untuk saya ikuti, atau file perihal ai bot yang mungkin saya lewati, please tag.

 

cron

curl "http://domain.com/schedule-run" >>/dev/null 2>&1    
curl "http://domain.com/blast-start" >/dev/null 2>&1    
/opt/cpanel/ea-php82/root/usr/bin/php /home/yudijali/public_html/domain.com/artisan schedule:run > /dev/null 2>&1    
/opt/cpanel/ea-php82/root/usr/bin/php /home/yudijali/public_html/domain.com/artisan start:blast > /dev/null 2>&1

 

Terima kasih 🙏

Edited by JangE

  • Author
comment_74909
4 minutes ago, JangE said:

Sallam, saya sudah mengikuti update dan sudah menggunakan v7...5, ai bot belum berfungsi, adakah node atau cron settingan yang tepat?

 

Terima kasih 🙏

Apakah pengiriman message text berfungsi dengan kamu? Coba klik Text Message, tulis pesan, dan kirim ke nomor kamu. Apakah pesan tersebut berhasil terkirim?

Jika tidak berfungsi, pergi ke Admin->Setting Server dan periksa apakah ada tanda X pada port."

comment_74911

@Magd Almuntaser  pesan terkirim dan tidak ada masalah Tuan, namun tanda X masih ada.

 

.env

.....

APP_NAME=MPWA
APP_ENV=local
APP_KEY=base64:PxG....3lMJwYFWpdxufKRbugeq8=
APP_DEBUG=true
APP_URL=https://domain.com
WA_URL_SERVER=https://domain.com
PORT_NODE=3100
APP_INSTALLED=true
LICENSE_KEY=MagdAlmuntaser-ttmtt
BUYER_EMAIL=doniaweb.com
TYPE_SERVER=hosting
DB_CONNECTION=mysql
DB_HOST=localhost    
....

 

Terima kasih sudah berkenan reply 🙏

 

image.thumb.png.0b81acf920168de6e933137e942a6e6f.png

Edited by JangE

comment_74917
3 hours ago, Pebrian said:
async function sendGemini({
  command,
  senderNumber,
  chatgptKey,
  participantNumber,
}) {
  try {
    const geminiUrl = process.env.GEIMINI_URL;
    const geminiData = {
      contents: [
        {
          parts: [
            { text: `Tolong balas dengan bahasa yang santai: ${command}` }
          ]
        }
      ],
      model_parameters: {
        language: "id-ID" // GANTI KE BAHASA KELEAN
      }
    };
    const headers = {
      'Content-Type': 'application/json'
    };
    
    const response = await axios.post(`${geminiUrl}?key=${chatgptKey}`, geminiData, { headers: headers }).catch(() => {
      return false;
    });

    if (response && response.data && response.data.candidates && response.data.candidates.length > 0) {
      let content = response.data.candidates[0].content.parts[0].text;
      content = content.replace(/["']/g, '');
      let resText = JSON.stringify({ text: content, quoted: false });
      return resText;
    } else {
      return false;
    }
  } catch (error) {
    console.log('error send Gemini', error);
    return false;
  }
}

Gemini lebih santai buat ngebales. udh w coba bahasa nya gak terlalu baku

Tapi bener kata master @Magd Almuntaser lebih bagus default krn bisa multi bahasa.

kalo kita ngomong bahasa sunda/ jawa dia juga akan jawab dengan bahasa yang sama.

mungkin cocok jika digunakan untuk indonesia only, yg tidak diakses orang luar

comment_74918
4 hours ago, Pebrian said:
async function sendGemini({
  command,
  senderNumber,
  chatgptKey,
  participantNumber,
}) {
  try {
    const geminiUrl = process.env.GEIMINI_URL;
    const geminiData = {
      contents: [
        {
          parts: [
            { text: `Tolong balas dengan bahasa yang santai: ${command}` }
          ]
        }
      ],
      model_parameters: {
        language: "id-ID" // GANTI KE BAHASA KELEAN
      }
    };
    const headers = {
      'Content-Type': 'application/json'
    };
    
    const response = await axios.post(`${geminiUrl}?key=${chatgptKey}`, geminiData, { headers: headers }).catch(() => {
      return false;
    });

    if (response && response.data && response.data.candidates && response.data.candidates.length > 0) {
      let content = response.data.candidates[0].content.parts[0].text;
      content = content.replace(/["']/g, '');
      let resText = JSON.stringify({ text: content, quoted: false });
      return resText;
    } else {
      return false;
    }
  } catch (error) {
    console.log('error send Gemini', error);
    return false;
  }
}

Gemini lebih santai buat ngebales. udh w coba bahasa nya gak terlalu baku

kok no respon ya gw ganti jadi ini di incoming message.js, udah restart node juga. dia jadi ga balas2

 

edited:

saya cuma ganti spt di gambar, dan si bobotpun membalas dengan centilnya 🙂

image.png.8feb070c6082c353d74a4722a3ee8083.png

Edited by kecoamumet

  • Author
comment_74919
37 minutes ago, Upal said:

@Magd Almuntaser It worked amazingly with your version. Funny to see the devs are trying to copy you with their webhooks now haha.

Could you please tell me if there is any WHMCS module with it?

There are plugins coming soon for whmcs and wordpress 👍

comment_74927
2 hours ago, JangE said:

@Magd Almuntaser  pesan terkirim dan tidak ada masalah Tuan, namun tanda X masih ada.

 

.env

.....

APP_NAME=MPWA
APP_ENV=local
APP_KEY=base64:PxG....3lMJwYFWpdxufKRbugeq8=
APP_DEBUG=true
APP_URL=https://domain.com
WA_URL_SERVER=https://domain.com
PORT_NODE=3100
APP_INSTALLED=true
LICENSE_KEY=MagdAlmuntaser-ttmtt
BUYER_EMAIL=doniaweb.com
TYPE_SERVER=hosting
DB_CONNECTION=mysql
DB_HOST=localhost    
....

 

Terima kasih sudah berkenan reply 🙏

 

image.thumb.png.0b81acf920168de6e933137e942a6e6f.png

sudah saya perbaiki Tuan
image.thumb.png.c68e498726cf8bc6f1b84aaa114b83d6.png

 

semua fitur bisa kecuali AI nya...

ada yang alami?
saya coba ikuti, sudah update 7...5 pun sudah

 

terima kasih 😊

comment_74928
4 hours ago, Magd Almuntaser said:

It's good that you modified it for you, but I removed all these options to make it universal for all people for English, Arabic, Indonesian and other languages 👍

Look at my signature on any post I write and you'll find the link. Look at the bottom of my post 👇

hahaha only for indonesian brother 🤣

3 hours ago, Enno The Explorer said:

penerapannya ini gmn? sy ga ngerti

incomingMessage.js edit paling bawah

1 hour ago, Unicode said:

Tapi bener kata master @Magd Almuntaser lebih bagus default krn bisa multi bahasa.

kalo kita ngomong bahasa sunda/ jawa dia juga akan jawab dengan bahasa yang sama.

mungkin cocok jika digunakan untuk indonesia only, yg tidak diakses orang luar

personal sih bang. kalo kita pengen yg sederhana seperti chatgpt harus kasih prompt

1 hour ago, kecoamumet said:

kok no respon ya gw ganti jadi ini di incoming message.js, udah restart node juga. dia jadi ga balas2

 

edited:

saya cuma ganti spt di gambar, dan si bobotpun membalas dengan centilnya 🙂

image.png.8feb070c6082c353d74a4722a3ee8083.png

mantap bang tinggal edit2 dikit.

comment_74929
2 minutes ago, JangE said:

sudah saya perbaiki Tuan
image.thumb.png.c68e498726cf8bc6f1b84aaa114b83d6.png

 

semua fitur bisa kecuali AI nya...

ada yang alami?
saya coba ikuti, sudah update 7...5 pun sudah

 

terima kasih 😊

Udah dicoba masukin apikey gemini?

untuk chatgpt pastikan ada saldo di openai

comment_74930
20 minutes ago, Unicode said:

Udah dicoba masukin apikey gemini?

untuk chatgpt pastikan ada saldo di openai

sudah kak, pun sudah saya coba 1 persatu untuk pastikan, tetap belum ada respon.

 

Edited, ada masalah, tiba2 sepperti ini

image.png.f74e6de682659e9c29349bf3689b4409.png

🙏

Edited by JangE

comment_74931
Just now, JangE said:

sudah kak, pun sudah saya coba 1 persatu untuk pastikan, tetap belum ada respon.

Coba restart node js. pake versi berapa?
Aku pake node js v19 aman jaya. Sudah 4 hari tidak terputus juga.

aku juga mendapati kasus yang sama di hosting yang lain. 
btw pake hosting apa 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 1

Latest Updated Files