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.7k
  • 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_76515
4 minutes ago, Enno The Explorer said:

bisa dibuat pakai appsheet om, diintegrasikan ke mpwa

Saya pakai web framework ci4 om 😅 sent notif lewat api , absen berbasis RFID 125hz , nah kalau wa bengong gini jadi rada gimana gitu wkwkwkw pm saja om saya kirim source code website nya

comment_76517
26 minutes ago, Enno The Explorer said:

di id cloudhost port 3100 dan 3120 berjalan lancar, mungkin hostingnya bermasalah kali mas 😄

node.js pakai v 16. type production jangan yang lain

solusinya gimana ya?

aku coba settingan other connected juga tapi mismatch. (QR dan wa tidak bisa konek)

sedangkan settingan hosting shared (use http link) tapi wa berjalan lancar.

Screenshot 2024-08-28 094419.png

comment_76520
1 minute ago, Enno The Explorer said:

buka file env.nya mas..itu pasti url serverya jadi httpss , kelebihan s nya 1

ini yg bener env pake https apa http aja?

aku cek dan coba rubah ke http aja dan https tetep muncul errornya

comment_76521
7 minutes ago, Unicode said:

ini yg bener env pake https apa http aja?

aku cek dan coba rubah ke http aja dan https tetep muncul errornya

tergantung, domain dan subdomain mas sebelumnya sdh di auto sll atau engga, klo saya pada saat buat domain pertama kali saya ssl dan saat buat sub domain untuk mpwa ini saya autossl lagi, jd bisa konek sesuai yang diharapka, klo mas bingung nnti sy bantu pakai remote anydesk

comment_76523

I always disconncted with this node js betweeb 01.xx - 02.xx AM. But other apps with 1 network & diferent VM running well.
---
Precond:
1. aaPanel, latest
2. Node js, latest
3. MPWA, latest

image.thumb.png.a84cea450eca6e5472095096bc531cdc.png

Maybe this recomendation and temporary solution by my case.
---
Issue:
Node js always stop running everyday and the apps (MPWA) show normal status of node js.

Temporary Solution:
Using cron job on your panel. In my case using aaPanel.

1. Create a Restart Script
Create a file/script "restart-node.sh" that will stop and restart a Node.js application in your folder.

#!/bin/bash

# Path ke direktori aplikasi Node.js
APP_DIR="/www/wwwroot/domain.com/your-application"

# Nama file utama aplikasi Node.js
APP_SCRIPT="your-js.js"

# Ganti direktori ke aplikasi
cd $APP_DIR

# Cari PID (Process ID) dari aplikasi yang sedang berjalan
PID=$(ps aux | grep $APP_SCRIPT | grep -v grep | awk '{print $2}')

# Jika PID ditemukan, matikan proses
if [ -n "$PID" ]; then
  kill -9 $PID
  echo "Proses NODE JS dihentikan."
fi

# Mulai kembali aplikasi NODE JS di background
nohup node $APP_SCRIPT > app.log 2>&1 &
echo "Aplikasi NODE JS telah dimulai kembali."

2. Set Permission on Script

chmod +x /path/to/restart-node.sh or set: 644/754

3. Create Cron Job in aaPanel (Shell Script)

/bin/bash /path/to/restart-node.sh

4. Setup Daily Task (Time of Executing) & Execute

5. See the log result and PID of Node.JS

---

Thanks.

comment_76525
41 minutes ago, Enno The Explorer said:

tergantung, domain dan subdomain mas sebelumnya sdh di auto sll atau engga, klo saya pada saat buat domain pertama kali saya ssl dan saat buat sub domain untuk mpwa ini saya autossl lagi, jd bisa konek sesuai yang diharapka, klo mas bingung nnti sy bantu pakai remote anydesk

ternyata bisa setelah mengikuti panduan om @Magd Almuntaser di page 40 namun setelah port connected, masalahnya adalah QR wa tidak bisa muncul 😅.

alhasil yasudah balik ke yg biasa aja hahaha

comment_76529
43 minutes ago, MURASAKI. said:

I always disconncted with this node js betweeb 01.xx - 02.xx AM. But other apps with 1 network & diferent VM running well.
---
Precond:
1. aaPanel, latest
2. Node js, latest
3. MPWA, latest

image.thumb.png.a84cea450eca6e5472095096bc531cdc.png

Maybe this recomendation and temporary solution by my case.
---
Issue:
Node js always stop running everyday and the apps (MPWA) show normal status of node js.

Temporary Solution:
Using cron job on your panel. In my case using aaPanel.

1. Create a Restart Script
Create a file/script "restart-node.sh" that will stop and restart a Node.js application in your folder.

#!/bin/bash

# Path ke direktori aplikasi Node.js
APP_DIR="/www/wwwroot/domain.com/your-application"

# Nama file utama aplikasi Node.js
APP_SCRIPT="your-js.js"

# Ganti direktori ke aplikasi
cd $APP_DIR

# Cari PID (Process ID) dari aplikasi yang sedang berjalan
PID=$(ps aux | grep $APP_SCRIPT | grep -v grep | awk '{print $2}')

# Jika PID ditemukan, matikan proses
if [ -n "$PID" ]; then
  kill -9 $PID
  echo "Proses NODE JS dihentikan."
fi

# Mulai kembali aplikasi NODE JS di background
nohup node $APP_SCRIPT > app.log 2>&1 &
echo "Aplikasi NODE JS telah dimulai kembali."

2. Set Permission on Script

chmod +x /path/to/restart-node.sh or set: 644/754

3. Create Cron Job in aaPanel (Shell Script)

/bin/bash /path/to/restart-node.sh

4. Setup Daily Task (Time of Executing) & Execute

5. See the log result and PID of Node.JS

---

Thanks.

How about at shared hosting mas? Can we apply it too?

Edited by Gusik Prasetyo

comment_76532
43 minutes ago, Enno The Explorer said:

nnti pesan bisa dikirim pakai API Direct url dari mpwa, nnti sy remotekan ya om 😄

Mas, idcloudhost mpwa 709 sering iddle ato lancar2 aja?

 

Hello sir @Magd Almuntaser I test on same hosting:

V.7.0.9: use cronjob every 5 minutes but often iddle and i have to restart nodejs. When iddle, i can't run autoreply, aibot, api.

V7.0.0 my whatsapp always connect even i don't use cronjob.

comment_76534
14 minutes ago, Gusik Prasetyo said:

Mas, idcloudhost mpwa 709 sering iddle ato lancar2 aja?

 

Hello sir @Magd Almuntaser I test on same hosting:

V.7.0.9: use cronjob every 5 minutes but often iddle and i have to restart nodejs. When iddle, i can't run autoreply, aibot, api.

V7.0.0 my whatsapp always connect even i don't use cronjob.

Seperti biasa , setelah update saya paste server.js dari 7.0.0 🤣

  • Author
comment_76538
2 hours ago, Unicode said:

solusinya gimana ya?

aku coba settingan other connected juga tapi mismatch. (QR dan wa tidak bisa konek)

sedangkan settingan hosting shared (use http link) tapi wa berjalan lancar.

Screenshot 2024-08-28 094419.png

you can check your link in browser bar if https or not

26 minutes ago, MURASAKI. said:

Really? have yu test the function?

This my result and still happen.
image.thumb.png.1d9c3b59d8543cdc4e0204a525c6775c.png

i don't know what is the problem but i've fixed many errors in this page on the next version ..

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