Jump to content
View in the app

A better way to browse. Learn more.

DoniaWeB

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
     

Whatsapp Gateway | Multi Device v12.0.1

Featured Replies

  • Replies 7.5k
  • Views 805.8k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • Magd Almuntaser
    Magd Almuntaser

    What's new in version 11.0.0 (so far): - Added Chat System (Customer Service). - Fixed Connection problems With WhatsApp. - Fixed Generate QR Via API. - Fixed Delete Sections From Edit List Page. - Fi

  • Magd Almuntaser
    Magd Almuntaser

    Version 11.0.1 has been released What's new in version 11.0.1: - Fixed Stop/Start AI In Conversations. - Fixed Chat Date (Database). - Fixed Migrate To Database. - Fixed Plans Page.

  • Magd Almuntaser
    Magd Almuntaser

    English Bexa AI will be released in the coming days, very soon. Everyone will be amazed by its speed, intelligence, and the way it interacts with users. It will not compete with ChatGPT, Gemini, or De

Most Helpful Posts

  • Magd Almuntaser
    Magd Almuntaser

    What will be available in version 11.0.0: - A chat system will be added. - A customer service system will be added (integrated with chat). - Some Indian payment gateways will be added. - Order design

  • Magd Almuntaser
    Magd Almuntaser

    English (EN) I have already informed you that WhatsApp is rolling out new updates. These updates are being sent to some numbers first and will gradually reach all numbers worldwide. The first update i

  • Magd Almuntaser
    Magd Almuntaser

    Yes you can use it as a messaging service/ SaaS without asking my permission, the new version 9.0.0 directly contains people who want to use it as a messaging service/ SaaS.. What's new so far in ver

Posted Images

Thank you for confirming that you are using Namecheap shared hosting.

On Namecheap shared hosting, the server uses Apache, not Nginx. This means you cannot directly modify Nginx configuration files or use Nginx-specific directives like the one you provided. Instead, you should use .htaccess rules for similar functionality.

On 11/9/2025 at 3:46 PM, jjsons said:

I think a lot of people are getting connection error. You can do the below steps and thank me later if it worked for you. I am not a professional developer and it took me almost 2 days to reach this point. This is a very simple 2 step process even a non-tech can do this; So, Let's start.

Step 1
Go to this dir ==> "node_modules/@onexgen/baileys/lib/Utils/validate-connection.d.ts" and replace the whole code of this file with below code

import { proto } from '../../WAProto';

import type { AuthenticationCreds, SignalCreds, SocketConfig } from '../Types';

import { BinaryNode } from '../WABinary';

export declare const generateLoginNode: (userJid: string, config: SocketConfig) => proto.ClientPayload;

export declare const generateRegistrationNode: (

creds: SignalCreds,

config: SocketConfig

) => proto.ClientPayload;

export declare const configureSuccessfulPairing: (

stanza: BinaryNode,

opts: Pick<AuthenticationCreds, 'advSecretKey' | 'signedIdentityKey' | 'signalIdentities'>

) => {

creds: Partial<AuthenticationCreds>;

reply: BinaryNode;

};

export declare const encodeSignedDeviceIdentity: (

account: proto.IADVSignedDeviceIdentity,

includeSignatureKey: boolean

) => Uint8Array;




Step 2:

Go to this dir ==> "node_modules/@onexgen/baileys/lib/Utils/validate-connection.js" and replace the whole code of this file with below code
"use strict";

Object.defineProperty(exports, "__esModule", { value: true });

exports.encodeSignedDeviceIdentity = exports.configureSuccessfulPairing = exports.generateRegistrationNode = exports.generateLoginNode = void 0;

const boom_1 = require("@hapi/boom");

const crypto_1 = require("crypto");

const WAProto_1 = require("../../WAProto");

const Defaults_1 = require("../Defaults");

const WABinary_1 = require("../WABinary");

const crypto_2 = require("./crypto");

const generics_1 = require("./generics");

const signal_1 = require("./signal");

const getUserAgent = (config) => ({

appVersion: {

primary: config.version[0],

secondary: config.version[1],

tertiary: config.version[2],

},

platform: WAProto_1.proto.ClientPayload.UserAgent.Platform.WEB,

releaseChannel: WAProto_1.proto.ClientPayload.UserAgent.ReleaseChannel.RELEASE,

osVersion: '0.1',

device: 'Desktop',

osBuildNumber: '0.1',

localeLanguageIso6391: 'en',

mnc: '000',

mcc: '000',

localeCountryIso31661Alpha2: config.countryCode,

});

const PLATFORM_MAP = {

'Mac OS': WAProto_1.proto.ClientPayload.WebInfo.WebSubPlatform.DARWIN,

Windows: WAProto_1.proto.ClientPayload.WebInfo.WebSubPlatform.WIN32,

};

const getWebInfo = (config) => {

let webSubPlatform = WAProto_1.proto.ClientPayload.WebInfo.WebSubPlatform.WEB_BROWSER;

if (config.syncFullHistory && PLATFORM_MAP[config.browser[0]]) {

webSubPlatform = PLATFORM_MAP[config.browser[0]];

}

return { webSubPlatform };

};

const getClientPayload = (config) => {

const payload = {

connectType: WAProto_1.proto.ClientPayload.ConnectType.WIFI_UNKNOWN,

connectReason: WAProto_1.proto.ClientPayload.ConnectReason.USER_ACTIVATED,

userAgent: getUserAgent(config),

};

payload.webInfo = getWebInfo(config);

return payload;

};

const generateLoginNode = (userJid, config) => {

const { user, device } = (0, WABinary_1.jidDecode)(userJid);

const payload = {

...getClientPayload(config),

passive: false,

pull: true,

username: +user,

device: device,

};

return WAProto_1.proto.ClientPayload.fromObject(payload);

};

exports.generateLoginNode = generateLoginNode;

const getPlatformType = (platform) => {

const platformType = platform.toUpperCase();

return WAProto_1.proto.DeviceProps.PlatformType[platformType] || WAProto_1.proto.DeviceProps.PlatformType.DESKTOP;

};

const generateRegistrationNode = ({ registrationId, signedPreKey, signedIdentityKey }, config) => {

const appVersionBuf = (0, crypto_1.createHash)('md5').update(config.version.join('.')).digest();

const companion = {

os: config.browser[0],

platformType: getPlatformType(config.browser[1]),

requireFullSync: config.syncFullHistory,

historySyncConfig: {

storageQuotaMb: 10240,

inlineInitialPayloadInE2EeMsg: true,

recentSyncDaysLimit: undefined,

supportCallLogHistory: false,

supportBotUserAgentChatHistory: true,

supportCagReactionsAndPolls: true,

supportBizHostedMsg: true,

supportRecentSyncChunkMessageCountTuning: true,

supportHostedGroupMsg: true,

supportFbidBotChatHistory: true,

supportAddOnHistorySyncMigration: undefined,

supportMessageAssociation: true,

},

};

const companionProto = WAProto_1.proto.DeviceProps.encode(companion).finish();

const registerPayload = {

...getClientPayload(config),

passive: false,

pull: false,

devicePairingData: {

buildHash: appVersionBuf,

deviceProps: companionProto,

eRegid: (0, generics_1.encodeBigEndian)(registrationId),

eKeytype: Defaults_1.KEY_BUNDLE_TYPE,

eIdent: signedIdentityKey.public,

eSkeyId: (0, generics_1.encodeBigEndian)(signedPreKey.keyId, 3),

eSkeyVal: signedPreKey.keyPair.public,

eSkeySig: signedPreKey.signature,

},

};

return WAProto_1.proto.ClientPayload.fromObject(registerPayload);

};

exports.generateRegistrationNode = generateRegistrationNode;

const configureSuccessfulPairing = (stanza, { advSecretKey, signedIdentityKey, signalIdentities }) => {

const msgId = stanza.attrs.id;

const pairSuccessNode = (0, WABinary_1.getBinaryNodeChild)(stanza, 'pair-success');

const deviceIdentityNode = (0, WABinary_1.getBinaryNodeChild)(pairSuccessNode, 'device-identity');

const platformNode = (0, WABinary_1.getBinaryNodeChild)(pairSuccessNode, 'platform');

const deviceNode = (0, WABinary_1.getBinaryNodeChild)(pairSuccessNode, 'device');

const businessNode = (0, WABinary_1.getBinaryNodeChild)(pairSuccessNode, 'biz');

if (!deviceIdentityNode || !deviceNode) {

throw new boom_1.Boom('Missing device-identity or device in pair success node', { data: stanza });

}

const bizName = businessNode?.attrs.name;

const jid = deviceNode.attrs.jid;

const { details, hmac, accountType } = WAProto_1.proto.ADVSignedDeviceIdentityHMAC.decode(deviceIdentityNode.content);

const isHostedAccount = accountType === WAProto_1.proto.ADVEncryptionType.HOSTED;

const hmacPrefix = isHostedAccount ? Buffer.from([6, 5]) : Buffer.alloc(0);

const advSign = (0, crypto_2.hmacSign)(Buffer.concat([hmacPrefix, details]), Buffer.from(advSecretKey, 'base64'));

if (Buffer.compare(hmac, advSign) !== 0) {

throw new boom_1.Boom('Invalid account signature');

}

const account = WAProto_1.proto.ADVSignedDeviceIdentity.decode(details);

const { accountSignatureKey, accountSignature, details: deviceDetails } = account;

const accountMsg = Buffer.concat([Buffer.from([6, 0]), deviceDetails, signedIdentityKey.public]);

if (!crypto_2.Curve.verify(accountSignatureKey, accountMsg, accountSignature)) {

throw new boom_1.Boom('Failed to verify account signature');

}

const devicePrefix = isHostedAccount ? Buffer.from([6, 6]) : Buffer.from([6, 1]);

const deviceMsg = Buffer.concat([devicePrefix, deviceDetails, signedIdentityKey.public, accountSignatureKey]);

account.deviceSignature = crypto_2.Curve.sign(signedIdentityKey.private, deviceMsg);

const identity = (0, signal_1.createSignalIdentity)(jid, accountSignatureKey);

const accountEnc = exports.encodeSignedDeviceIdentity(account, false);

const deviceIdentity = WAProto_1.proto.ADVDeviceIdentity.decode(account.details);

const reply = {

tag: 'iq',

attrs: { to: WABinary_1.S_WHATSAPP_NET, type: 'result', id: msgId },

content: [{ tag: 'pair-device-sign', attrs: {}, content: [{ tag: 'device-identity', attrs: { 'key-index': deviceIdentity.keyIndex.toString() }, content: accountEnc }] }],

};

const authUpdate = {

account,

me: { id: jid, name: bizName },

signalIdentities: [...(signalIdentities || []), identity],

platform: platformNode?.attrs.name,

};

return { creds: authUpdate, reply };

};

exports.configureSuccessfulPairing = configureSuccessfulPairing;

const encodeSignedDeviceIdentity = (account, includeSignatureKey) => {

account = { ...account };

if (!includeSignatureKey || !account.accountSignatureKey?.length) account.accountSignatureKey = null;

return WAProto_1.proto.ADVSignedDeviceIdentity.encode(account).finish();

};

exports.encodeSignedDeviceIdentity = encodeSignedDeviceIdentity;

not working for me, im using latest version

5 hours ago, GMods said:

not working for me, im using latest version

i give you the step:

  1. Stop your Node server.

  2. Download the files validate-connection.js and validate-connection.d.ts from the links provided below.

  3. Go to the directory:
    /your_mpwa_directory/node_modules/@onexgen/baileys/lib/Utils/

  4. Replace the existing validate-connection.js and validate-connection.d.ts files with the new ones you just downloaded.

  5. Start your Node server again.

  6. Try reconnecting your WhatsApp account.

Thanks for @jjsons for the solution.

validate-connection.js validate-connection.d.ts

Edited by Azhar Azziz

13 minutes ago, Azhar Azziz said:

i give you the step:

  1. Stop your Node server.

  2. Download the files validate-connection.js and validate-connection.d.ts from the links provided below.

  3. Go to the directory:
    /your_mpwa_directory/node_modules/@onexgen/baileys/lib/Utils/

  4. Replace the existing validate-connection.js and validate-connection.d.ts files with the new ones you just downloaded.

  5. Start your Node server again.

  6. Try reconnecting your WhatsApp account.

Thanks for @jjsons for the solution.

validate-connection.js validate-connection.d.ts

thankyou very much, now work perfectly

1 hour ago, Azhar Azziz said:
  3 hours ago, IT The Explorer said:

2025-11-14_111350.png

Tidak bisa menambahkan Tombol pada button message mr @Magd Almuntaser

  On 10/26/2025 at 8:44 AM, Azhar Azziz said:

replace this file in this path:
resources/themes/vuexy/views/ajax/messages

Thanx u very much brother kuh

1 hour ago, Azhar Azziz said:
  3 hours ago, IT The Explorer said:

2025-11-14_111350.png

Tidak bisa menambahkan Tombol pada button message mr @Magd Almuntaser

  On 10/26/2025 at 8:44 AM, Azhar Azziz said:

replace this file in this path:
resources/themes/vuexy/views/ajax/messages

Thanx so much brother kuh

4 minutes ago, adit_a said:

Min, aku install di appanel sudah berhasil tapi sat kirim type button yg ada url tidak bisa terkirim dan muncul ini.

Screenshot_2025-11-14-19-04-04-153_com.whatsapp.w4b-edit.jpg

if its buttone message send with image it will fix this issue

hello guys I’ve noticed an issue with our WhatsApp webhook integration that I’d like your review and input on:

Problem:
Currently, mpwa system is sending messages to WhatsApp Cloud IDs (e.g., 230798909300897) instead of actual numeric phone numbers. The mpwa Text API requires a valid WhatsApp number (e.g., 2547xxxxxxx) as the number parameter. Sending Cloud IDs results in failed messages with Failed to send message!.

Example Case:

  • Incoming webhook message:

{
  "message": "Hello",
  "from": "230798909300897",
  "participant": "230798909300897@c.us"
}
  • Current API payload sent:

{
  "api_key": "HAEmrxJW7I1ZEBAOEEJiBGhV2StAGW",
  "sender": "254751599663",
  "number": "230798909300897",
  "message": "Hello!",
  "footer": "Sent via mpwa"
}
  • API Response:

{
  "status": false,
  "msg": "Failed to send message!"
}

Observation:

  • Cloud IDs (1203… or 2307…) cannot receive messages.

  • We need to ensure that the number parameter is a real numeric WhatsApp phone number, extracted properly from the participant JID when available.

Request:
Could you review our webhook and API sending logic, and suggest or implement a fix to reliably send messages only to valid phone numbers?

Thanks! @Magd Almuntaser @Azhar Azziz
image.png

On 11/11/2025 at 2:18 PM, Fabricio Lopes said:

🧩 Integração com API MPWA – Dúvida Técnica

Olá pessoal!
Criei um CRM que utiliza a API do MPWA e implementei o chat integrado para facilitar o envio de orçamentos, ordens de serviço e cobranças diretamente do sistema (print em anexo).

No entanto, percebi duas limitações que não consegui contornar:

  1. Mensagens de áudio não são capturadas pelo webhook;

  2. Mensagens enviadas de outros dispositivos (WhatsApp Web ou celular) também não são detectadas, ou seja, só aparecem no sistema as mensagens trocadas diretamente pelo CRM.

As mensagens enviadas e recebidas via sistema funcionam perfeitamente — apenas essas duas situações não retornam pelo webhook.

Gostaria de saber se há alguma configuração adicional ou endpoint que permita capturar esses tipos de mensagens.

Obrigado! 👋


image.png

you will share this? or is paid?

14 hours ago, Azhar Azziz said:

i give you the step:

  1. Stop your Node server.

  2. Download the files validate-connection.js and validate-connection.d.ts from the links provided below.

  3. Go to the directory:
    /your_mpwa_directory/node_modules/@onexgen/baileys/lib/Utils/

  4. Replace the existing validate-connection.js and validate-connection.d.ts files with the new ones you just downloaded.

  5. Start your Node server again.

  6. Try reconnecting your WhatsApp account.

Thanks for @jjsons for the solution.

validate-connection.js validate-connection.d.ts

still error for me ...

Bahasa Indonesia

Solusi Login Qr/Kode Login untuk sementara waktu sambil menunggu update terbaru :

Lakukan hal berikut :

1. Matikan server NodeJs

2. Hapus dependensi : npm uninstall @onexgen/baileys

3. Install dependensi : npm install @whiskeysockets/baileys

4. Pindahkan file berikut ke masing-masing direktori :

whatsApp.js ke MPWA/server

messageProcessor.js ke MPWA/server/controllers

helper.js ke MPWA/server/lib

5. Hapus node_modules

6. Install node_modules : npm install

7. Mulai ulang NodeJs

Semoga bermanfaat.

English

Solution for Qr Login & Login Code temporarily while waiting for the latest update.

Do the following:

1. Turn off the NodeJs server

2. Remove dependencies : npm uninstall @onexgen/baileys

3. Install dependensi : npm install @whiskeysockets/baileys

4. Move the following files to each directory:

whatsApp.js to MPWA/server

messageProcessor.js to MPWA/server/controllers

helper.js to MPWA/server/lib

5. Delete node_modules

6. Install node_modules : npm install

7. Restart NodeJs

Hope it is useful.

whatsapp.js helper.js messageProcessor.js

Edited by wong

  • Author
English (EN)

I have already informed you that WhatsApp is rolling out new updates. These updates are being sent to some numbers first and will gradually reach all numbers worldwide.

The first update is converting phone numbers into JID numbers to hide the sender’s and receiver’s phone numbers. Soon, you will be able to set a username and share it with your friends instead of your phone number. Because of this, WhatsApp is now converting phone numbers into 16-digit numbers, so in the near future you won’t be able to send messages to all numbers as before.

Secondly, with these updates, WhatsApp has recently added a feature where, when you link the QR code in the browser or even in MPWA, your phone will start counting how many days the QR session has been active for a limited period, after which you will be logged out automatically.

Thirdly, the modifications you are making to the files are not effective at all. For example, some of you replaced the OneXGen library with the WhiskeySockets library, which means you will no longer be able to send list messages, and many features will stop working such as sending products, sending messages to channels, and many others.

Fourthly, modifying verification files just to bypass the issue that prevents you from logging in via QR only bypasses it temporarily, it does not fix the actual problem. The issue is related to WhatsApp's changes that are meant to prevent long-term QR sessions from continuing to work.

===================

In the end, my silence does not mean I am not reading your comments. You can see me online every day, but I am monitoring WhatsApp until it finishes its changes so I can start working on the new update based on whatever WhatsApp settles on. It is impossible to update and break the code every single day just because WhatsApp pushes daily changes. So I am waiting until WhatsApp developers finish, so we know our next step.


Indonesian

Saya sudah memberi tahu kalian sebelumnya bahwa WhatsApp sedang merilis pembaruan baru. Pembaruan ini dikirimkan ke beberapa nomor terlebih dahulu dan nanti akan sampai ke semua nomor di seluruh dunia.

Pembaruan pertama adalah mengubah nomor telepon menjadi nomor JID untuk menyembunyikan nomor pengirim dan penerima. Dalam waktu dekat, kalian akan bisa membuat username dan mengirimkannya ke teman kalian sebagai pengganti nomor telepon. Karena itu, WhatsApp sekarang sedang mengonversi nomor telepon menjadi nomor 16 digit, sehingga nanti kalian tidak akan bisa mengirim pesan ke semua nomor seperti sebelumnya.

Kedua, dengan pembaruan ini, WhatsApp baru-baru ini menambahkan fitur bahwa ketika kalian menautkan QR di browser atau bahkan di MPWA, ponsel kalian akan mulai menghitung berapa hari sesi QR itu aktif dalam jangka waktu tertentu, dan setelah itu kalian akan otomatis keluar.

Ketiga, perubahan yang kalian lakukan pada file sama sekali tidak berguna. Misalnya, beberapa dari kalian mengganti library OneXGen dengan WhiskeySockets, yang berarti kalian tidak bisa lagi mengirim pesan daftar, dan banyak fitur akan hilang seperti mengirim produk, mengirim pesan ke channel, dan lainnya.

Keempat, mengubah file verifikasi hanya untuk melewati masalah login QR berarti kalian hanya melewati masalahnya, bukan memperbaikinya. Masalahnya terkait dengan perubahan yang dibuat WhatsApp untuk mencegah sesi QR tetap aktif dalam waktu lama.

===================

Pada akhirnya, diamnya saya bukan berarti saya tidak membaca komentar kalian. Kalian bisa melihat saya online setiap hari, tetapi saya sedang menunggu sampai WhatsApp menyelesaikan semua perubahan mereka agar saya bisa mulai mengerjakan pembaruan baru berdasarkan apa yang sudah stabil. Tidak mungkin memperbarui dan merusak kode setiap hari hanya karena WhatsApp melakukan perubahan harian. Jadi saya sedang menunggu sampai para developer WhatsApp selesai agar kita tahu langkah kita selanjutnya.


Spanish

Ya les informé anteriormente que WhatsApp está lanzando nuevas actualizaciones. Estas actualizaciones llegan primero a algunos números y luego se extenderán al resto del mundo.

La primera actualización consiste en convertir los números de teléfono en números JID para ocultar el número del remitente y del destinatario. Muy pronto podrán configurar un nombre de usuario y enviarlo a sus amigos en lugar de su número de teléfono. Por esta razón, WhatsApp está convirtiendo los números en códigos de 16 dígitos, y pronto no podrán enviar mensajes a todos los números como antes.

En segundo lugar, con estas actualizaciones, WhatsApp añadió recientemente una función en la que, cuando enlazas el código QR en el navegador o incluso en MPWA, tu teléfono comenzará a contar los días que la sesión QR ha estado activa por un período limitado, después del cual se cerrará automáticamente.

En tercer lugar, las modificaciones que están haciendo a los archivos no sirven de nada. Por ejemplo, algunos reemplazaron la librería OneXGen por WhiskeySockets, lo que significa que ya no podrán enviar mensajes de listas, y muchas funciones desaparecerán, como enviar productos, enviar mensajes a canales, y más.

En cuarto lugar, modificar los archivos de verificación solo para omitir el problema del inicio de sesión por QR significa que solo lo están evitando temporalmente, pero no lo están solucionando. El problema está relacionado con los cambios que está haciendo WhatsApp para evitar que las sesiones QR se mantengan activas durante mucho tiempo.

===================

Al final, mi silencio no significa que no esté leyendo sus comentarios. Ustedes pueden verme conectado todos los días, pero estoy esperando a que WhatsApp termine sus cambios para poder empezar a trabajar en la nueva actualización según lo que se estabilice. Es imposible actualizar y romper el código todos los días solo porque WhatsApp hace cambios diarios. Por eso, estoy esperando a que los desarrolladores de WhatsApp terminen para saber cuál será nuestro siguiente paso.


Hindi

मैंने आपको पहले ही बताया था कि WhatsApp नई अपडेट जारी कर रहा है। ये अपडेट पहले कुछ नंबरों पर भेजी जा रही हैं और धीरे-धीरे दुनिया भर के सभी नंबरों तक पहुँचेंगी।

पहली अपडेट में फोन नंबरों को JID नंबरों में बदला जा रहा है ताकि भेजने वाले और प्राप्त करने वाले का नंबर छिपाया जा सके। जल्द ही आप एक यूज़रनेम सेट कर सकेंगे और अपने दोस्तों को अपना फोन नंबर देने के बजाय वही भेज सकेंगे। इसी वजह से WhatsApp अब फोन नंबरों को 16 अंकों वाले नंबर में बदल रहा है, इसलिए आने वाले समय में आप हर नंबर पर पहले की तरह संदेश नहीं भेज पाएंगे।

दूसरा, इन अपडेट्स के साथ WhatsApp ने हाल ही में एक फ़ीचर जोड़ा है कि जब आप QR को ब्राउज़र में या MPWA में लिंक करते हैं, तो आपका फोन यह गिनना शुरू कर देगा कि QR सत्र कितने दिनों से सक्रिय है, और एक निश्चित अवधि के बाद आपको स्वचालित रूप से लॉगआउट कर दिया जाएगा।

तीसरा, आप जो फ़ाइलों में बदलाव कर रहे हैं, वे बिल्कुल भी काम नहीं करते। उदाहरण के लिए, कुछ लोगों ने OneXGen लाइब्रेरी को WhiskeySockets से बदल दिया, जिसका मतलब है कि आप सूची संदेश नहीं भेज पाएंगे और कई फ़ीचर्स गायब हो जाएँगे जैसे कि उत्पाद भेजना, चैनल संदेश भेजना आदि।

चौथा, QR लॉगिन समस्या को बायपास करने के लिए वेरिफिकेशन फ़ाइलों को संशोधित करना केवल अस्थायी बायपास है — इससे असली समस्या हल नहीं होती। यह समस्या WhatsApp द्वारा किए जा रहे परिवर्तनों से जुड़ी है, जो लंबे समय तक QR सत्र को सक्रिय रहने से रोकने के लिए की जा रही हैं।

===================

अंत में, मेरा चुप रहना इसका मतलब नहीं है कि मैं आपकी टिप्पणियाँ नहीं पढ़ रहा। आप मुझे रोज़ ऑनलाइन देखते हैं, लेकिन मैं WhatsApp के बदलाव पूरे होने का इंतज़ार कर रहा हूँ ताकि मैं नई अपडेट पर काम शुरू कर सकूँ। हर दिन WhatsApp के दैनिक अपडेट के कारण कोड को तोड़ना और ठीक करना संभव नहीं है। इसलिए मैं इंतज़ार कर रहा हूँ कि WhatsApp डेवलपर्स कब समाप्त करते हैं ताकि हमें पता चले कि अगला कदम क्या होगा।

8 minutes ago, Magd Almuntaser said:
English (EN)

I have already informed you that WhatsApp is rolling out new updates. These updates are being sent to some numbers first and will gradually reach all numbers worldwide.

The first update is converting phone numbers into JID numbers to hide the sender’s and receiver’s phone numbers. Soon, you will be able to set a username and share it with your friends instead of your phone number. Because of this, WhatsApp is now converting phone numbers into 16-digit numbers, so in the near future you won’t be able to send messages to all numbers as before.

Secondly, with these updates, WhatsApp has recently added a feature where, when you link the QR code in the browser or even in MPWA, your phone will start counting how many days the QR session has been active for a limited period, after which you will be logged out automatically.

Thirdly, the modifications you are making to the files are not effective at all. For example, some of you replaced the OneXGen library with the WhiskeySockets library, which means you will no longer be able to send list messages, and many features will stop working such as sending products, sending messages to channels, and many others.

Fourthly, modifying verification files just to bypass the issue that prevents you from logging in via QR only bypasses it temporarily, it does not fix the actual problem. The issue is related to WhatsApp's changes that are meant to prevent long-term QR sessions from continuing to work.

===================

In the end, my silence does not mean I am not reading your comments. You can see me online every day, but I am monitoring WhatsApp until it finishes its changes so I can start working on the new update based on whatever WhatsApp settles on. It is impossible to update and break the code every single day just because WhatsApp pushes daily changes. So I am waiting until WhatsApp developers finish, so we know our next step.


Indonesian

Saya sudah memberi tahu kalian sebelumnya bahwa WhatsApp sedang merilis pembaruan baru. Pembaruan ini dikirimkan ke beberapa nomor terlebih dahulu dan nanti akan sampai ke semua nomor di seluruh dunia.

Pembaruan pertama adalah mengubah nomor telepon menjadi nomor JID untuk menyembunyikan nomor pengirim dan penerima. Dalam waktu dekat, kalian akan bisa membuat username dan mengirimkannya ke teman kalian sebagai pengganti nomor telepon. Karena itu, WhatsApp sekarang sedang mengonversi nomor telepon menjadi nomor 16 digit, sehingga nanti kalian tidak akan bisa mengirim pesan ke semua nomor seperti sebelumnya.

Kedua, dengan pembaruan ini, WhatsApp baru-baru ini menambahkan fitur bahwa ketika kalian menautkan QR di browser atau bahkan di MPWA, ponsel kalian akan mulai menghitung berapa hari sesi QR itu aktif dalam jangka waktu tertentu, dan setelah itu kalian akan otomatis keluar.

Ketiga, perubahan yang kalian lakukan pada file sama sekali tidak berguna. Misalnya, beberapa dari kalian mengganti library OneXGen dengan WhiskeySockets, yang berarti kalian tidak bisa lagi mengirim pesan daftar, dan banyak fitur akan hilang seperti mengirim produk, mengirim pesan ke channel, dan lainnya.

Keempat, mengubah file verifikasi hanya untuk melewati masalah login QR berarti kalian hanya melewati masalahnya, bukan memperbaikinya. Masalahnya terkait dengan perubahan yang dibuat WhatsApp untuk mencegah sesi QR tetap aktif dalam waktu lama.

===================

Pada akhirnya, diamnya saya bukan berarti saya tidak membaca komentar kalian. Kalian bisa melihat saya online setiap hari, tetapi saya sedang menunggu sampai WhatsApp menyelesaikan semua perubahan mereka agar saya bisa mulai mengerjakan pembaruan baru berdasarkan apa yang sudah stabil. Tidak mungkin memperbarui dan merusak kode setiap hari hanya karena WhatsApp melakukan perubahan harian. Jadi saya sedang menunggu sampai para developer WhatsApp selesai agar kita tahu langkah kita selanjutnya.


Spanish

Ya les informé anteriormente que WhatsApp está lanzando nuevas actualizaciones. Estas actualizaciones llegan primero a algunos números y luego se extenderán al resto del mundo.

La primera actualización consiste en convertir los números de teléfono en números JID para ocultar el número del remitente y del destinatario. Muy pronto podrán configurar un nombre de usuario y enviarlo a sus amigos en lugar de su número de teléfono. Por esta razón, WhatsApp está convirtiendo los números en códigos de 16 dígitos, y pronto no podrán enviar mensajes a todos los números como antes.

En segundo lugar, con estas actualizaciones, WhatsApp añadió recientemente una función en la que, cuando enlazas el código QR en el navegador o incluso en MPWA, tu teléfono comenzará a contar los días que la sesión QR ha estado activa por un período limitado, después del cual se cerrará automáticamente.

En tercer lugar, las modificaciones que están haciendo a los archivos no sirven de nada. Por ejemplo, algunos reemplazaron la librería OneXGen por WhiskeySockets, lo que significa que ya no podrán enviar mensajes de listas, y muchas funciones desaparecerán, como enviar productos, enviar mensajes a canales, y más.

En cuarto lugar, modificar los archivos de verificación solo para omitir el problema del inicio de sesión por QR significa que solo lo están evitando temporalmente, pero no lo están solucionando. El problema está relacionado con los cambios que está haciendo WhatsApp para evitar que las sesiones QR se mantengan activas durante mucho tiempo.

===================

Al final, mi silencio no significa que no esté leyendo sus comentarios. Ustedes pueden verme conectado todos los días, pero estoy esperando a que WhatsApp termine sus cambios para poder empezar a trabajar en la nueva actualización según lo que se estabilice. Es imposible actualizar y romper el código todos los días solo porque WhatsApp hace cambios diarios. Por eso, estoy esperando a que los desarrolladores de WhatsApp terminen para saber cuál será nuestro siguiente paso.


Hindi

मैंने आपको पहले ही बताया था कि WhatsApp नई अपडेट जारी कर रहा है। ये अपडेट पहले कुछ नंबरों पर भेजी जा रही हैं और धीरे-धीरे दुनिया भर के सभी नंबरों तक पहुँचेंगी।

पहली अपडेट में फोन नंबरों को JID नंबरों में बदला जा रहा है ताकि भेजने वाले और प्राप्त करने वाले का नंबर छिपाया जा सके। जल्द ही आप एक यूज़रनेम सेट कर सकेंगे और अपने दोस्तों को अपना फोन नंबर देने के बजाय वही भेज सकेंगे। इसी वजह से WhatsApp अब फोन नंबरों को 16 अंकों वाले नंबर में बदल रहा है, इसलिए आने वाले समय में आप हर नंबर पर पहले की तरह संदेश नहीं भेज पाएंगे।

दूसरा, इन अपडेट्स के साथ WhatsApp ने हाल ही में एक फ़ीचर जोड़ा है कि जब आप QR को ब्राउज़र में या MPWA में लिंक करते हैं, तो आपका फोन यह गिनना शुरू कर देगा कि QR सत्र कितने दिनों से सक्रिय है, और एक निश्चित अवधि के बाद आपको स्वचालित रूप से लॉगआउट कर दिया जाएगा।

तीसरा, आप जो फ़ाइलों में बदलाव कर रहे हैं, वे बिल्कुल भी काम नहीं करते। उदाहरण के लिए, कुछ लोगों ने OneXGen लाइब्रेरी को WhiskeySockets से बदल दिया, जिसका मतलब है कि आप सूची संदेश नहीं भेज पाएंगे और कई फ़ीचर्स गायब हो जाएँगे जैसे कि उत्पाद भेजना, चैनल संदेश भेजना आदि।

चौथा, QR लॉगिन समस्या को बायपास करने के लिए वेरिफिकेशन फ़ाइलों को संशोधित करना केवल अस्थायी बायपास है — इससे असली समस्या हल नहीं होती। यह समस्या WhatsApp द्वारा किए जा रहे परिवर्तनों से जुड़ी है, जो लंबे समय तक QR सत्र को सक्रिय रहने से रोकने के लिए की जा रही हैं।

===================

अंत में, मेरा चुप रहना इसका मतलब नहीं है कि मैं आपकी टिप्पणियाँ नहीं पढ़ रहा। आप मुझे रोज़ ऑनलाइन देखते हैं, लेकिन मैं WhatsApp के बदलाव पूरे होने का इंतज़ार कर रहा हूँ ताकि मैं नई अपडेट पर काम शुरू कर सकूँ। हर दिन WhatsApp के दैनिक अपडेट के कारण कोड को तोड़ना और ठीक करना संभव नहीं है। इसलिए मैं इंतज़ार कर रहा हूँ कि WhatsApp डेवलपर्स कब समाप्त करते हैं ताकि हमें पता चले कि अगला कदम क्या होगा।

sependapat

2 hours ago, Magd Almuntaser said:
English (EN)

I have already informed you that WhatsApp is rolling out new updates. These updates are being sent to some numbers first and will gradually reach all numbers worldwide.

The first update is converting phone numbers into JID numbers to hide the sender’s and receiver’s phone numbers. Soon, you will be able to set a username and share it with your friends instead of your phone number. Because of this, WhatsApp is now converting phone numbers into 16-digit numbers, so in the near future you won’t be able to send messages to all numbers as before.

Secondly, with these updates, WhatsApp has recently added a feature where, when you link the QR code in the browser or even in MPWA, your phone will start counting how many days the QR session has been active for a limited period, after which you will be logged out automatically.

Thirdly, the modifications you are making to the files are not effective at all. For example, some of you replaced the OneXGen library with the WhiskeySockets library, which means you will no longer be able to send list messages, and many features will stop working such as sending products, sending messages to channels, and many others.

Fourthly, modifying verification files just to bypass the issue that prevents you from logging in via QR only bypasses it temporarily, it does not fix the actual problem. The issue is related to WhatsApp's changes that are meant to prevent long-term QR sessions from continuing to work.

===================

In the end, my silence does not mean I am not reading your comments. You can see me online every day, but I am monitoring WhatsApp until it finishes its changes so I can start working on the new update based on whatever WhatsApp settles on. It is impossible to update and break the code every single day just because WhatsApp pushes daily changes. So I am waiting until WhatsApp developers finish, so we know our next step.


Indonesian

Saya sudah memberi tahu kalian sebelumnya bahwa WhatsApp sedang merilis pembaruan baru. Pembaruan ini dikirimkan ke beberapa nomor terlebih dahulu dan nanti akan sampai ke semua nomor di seluruh dunia.

Pembaruan pertama adalah mengubah nomor telepon menjadi nomor JID untuk menyembunyikan nomor pengirim dan penerima. Dalam waktu dekat, kalian akan bisa membuat username dan mengirimkannya ke teman kalian sebagai pengganti nomor telepon. Karena itu, WhatsApp sekarang sedang mengonversi nomor telepon menjadi nomor 16 digit, sehingga nanti kalian tidak akan bisa mengirim pesan ke semua nomor seperti sebelumnya.

Kedua, dengan pembaruan ini, WhatsApp baru-baru ini menambahkan fitur bahwa ketika kalian menautkan QR di browser atau bahkan di MPWA, ponsel kalian akan mulai menghitung berapa hari sesi QR itu aktif dalam jangka waktu tertentu, dan setelah itu kalian akan otomatis keluar.

Ketiga, perubahan yang kalian lakukan pada file sama sekali tidak berguna. Misalnya, beberapa dari kalian mengganti library OneXGen dengan WhiskeySockets, yang berarti kalian tidak bisa lagi mengirim pesan daftar, dan banyak fitur akan hilang seperti mengirim produk, mengirim pesan ke channel, dan lainnya.

Keempat, mengubah file verifikasi hanya untuk melewati masalah login QR berarti kalian hanya melewati masalahnya, bukan memperbaikinya. Masalahnya terkait dengan perubahan yang dibuat WhatsApp untuk mencegah sesi QR tetap aktif dalam waktu lama.

===================

Pada akhirnya, diamnya saya bukan berarti saya tidak membaca komentar kalian. Kalian bisa melihat saya online setiap hari, tetapi saya sedang menunggu sampai WhatsApp menyelesaikan semua perubahan mereka agar saya bisa mulai mengerjakan pembaruan baru berdasarkan apa yang sudah stabil. Tidak mungkin memperbarui dan merusak kode setiap hari hanya karena WhatsApp melakukan perubahan harian. Jadi saya sedang menunggu sampai para developer WhatsApp selesai agar kita tahu langkah kita selanjutnya.


Spanish

Ya les informé anteriormente que WhatsApp está lanzando nuevas actualizaciones. Estas actualizaciones llegan primero a algunos números y luego se extenderán al resto del mundo.

La primera actualización consiste en convertir los números de teléfono en números JID para ocultar el número del remitente y del destinatario. Muy pronto podrán configurar un nombre de usuario y enviarlo a sus amigos en lugar de su número de teléfono. Por esta razón, WhatsApp está convirtiendo los números en códigos de 16 dígitos, y pronto no podrán enviar mensajes a todos los números como antes.

En segundo lugar, con estas actualizaciones, WhatsApp añadió recientemente una función en la que, cuando enlazas el código QR en el navegador o incluso en MPWA, tu teléfono comenzará a contar los días que la sesión QR ha estado activa por un período limitado, después del cual se cerrará automáticamente.

En tercer lugar, las modificaciones que están haciendo a los archivos no sirven de nada. Por ejemplo, algunos reemplazaron la librería OneXGen por WhiskeySockets, lo que significa que ya no podrán enviar mensajes de listas, y muchas funciones desaparecerán, como enviar productos, enviar mensajes a canales, y más.

En cuarto lugar, modificar los archivos de verificación solo para omitir el problema del inicio de sesión por QR significa que solo lo están evitando temporalmente, pero no lo están solucionando. El problema está relacionado con los cambios que está haciendo WhatsApp para evitar que las sesiones QR se mantengan activas durante mucho tiempo.

===================

Al final, mi silencio no significa que no esté leyendo sus comentarios. Ustedes pueden verme conectado todos los días, pero estoy esperando a que WhatsApp termine sus cambios para poder empezar a trabajar en la nueva actualización según lo que se estabilice. Es imposible actualizar y romper el código todos los días solo porque WhatsApp hace cambios diarios. Por eso, estoy esperando a que los desarrolladores de WhatsApp terminen para saber cuál será nuestro siguiente paso.


Hindi

मैंने आपको पहले ही बताया था कि WhatsApp नई अपडेट जारी कर रहा है। ये अपडेट पहले कुछ नंबरों पर भेजी जा रही हैं और धीरे-धीरे दुनिया भर के सभी नंबरों तक पहुँचेंगी।

पहली अपडेट में फोन नंबरों को JID नंबरों में बदला जा रहा है ताकि भेजने वाले और प्राप्त करने वाले का नंबर छिपाया जा सके। जल्द ही आप एक यूज़रनेम सेट कर सकेंगे और अपने दोस्तों को अपना फोन नंबर देने के बजाय वही भेज सकेंगे। इसी वजह से WhatsApp अब फोन नंबरों को 16 अंकों वाले नंबर में बदल रहा है, इसलिए आने वाले समय में आप हर नंबर पर पहले की तरह संदेश नहीं भेज पाएंगे।

दूसरा, इन अपडेट्स के साथ WhatsApp ने हाल ही में एक फ़ीचर जोड़ा है कि जब आप QR को ब्राउज़र में या MPWA में लिंक करते हैं, तो आपका फोन यह गिनना शुरू कर देगा कि QR सत्र कितने दिनों से सक्रिय है, और एक निश्चित अवधि के बाद आपको स्वचालित रूप से लॉगआउट कर दिया जाएगा।

तीसरा, आप जो फ़ाइलों में बदलाव कर रहे हैं, वे बिल्कुल भी काम नहीं करते। उदाहरण के लिए, कुछ लोगों ने OneXGen लाइब्रेरी को WhiskeySockets से बदल दिया, जिसका मतलब है कि आप सूची संदेश नहीं भेज पाएंगे और कई फ़ीचर्स गायब हो जाएँगे जैसे कि उत्पाद भेजना, चैनल संदेश भेजना आदि।

चौथा, QR लॉगिन समस्या को बायपास करने के लिए वेरिफिकेशन फ़ाइलों को संशोधित करना केवल अस्थायी बायपास है — इससे असली समस्या हल नहीं होती। यह समस्या WhatsApp द्वारा किए जा रहे परिवर्तनों से जुड़ी है, जो लंबे समय तक QR सत्र को सक्रिय रहने से रोकने के लिए की जा रही हैं।

===================

अंत में, मेरा चुप रहना इसका मतलब नहीं है कि मैं आपकी टिप्पणियाँ नहीं पढ़ रहा। आप मुझे रोज़ ऑनलाइन देखते हैं, लेकिन मैं WhatsApp के बदलाव पूरे होने का इंतज़ार कर रहा हूँ ताकि मैं नई अपडेट पर काम शुरू कर सकूँ। हर दिन WhatsApp के दैनिक अपडेट के कारण कोड को तोड़ना और ठीक करना संभव नहीं है। इसलिए मैं इंतज़ार कर रहा हूँ कि WhatsApp डेवलपर्स कब समाप्त करते हैं ताकि हमें पता चले कि अगला कदम क्या होगा।

The first update is converting phone numbers into JID numbers to hide the sender’s and receiver’s phone numbers. Soon, you will be able to set a username and share it with your friends instead of your phone number. Because of this, WhatsApp is now converting phone numbers into 16-digit numbers, so in the near future you won’t be able to send messages to all numbers as before.

@Magd Almuntaser lets first work on this issue its the real big deal here as my whatsapp is not working on the webhook feature i would recoment check the evolution api they have come up with something to fix this .... thank you for breaking silence

3 hours ago, Magd Almuntaser said:
English (EN)

I have already informed you that WhatsApp is rolling out new updates. These updates are being sent to some numbers first and will gradually reach all numbers worldwide.

The first update is converting phone numbers into JID numbers to hide the sender’s and receiver’s phone numbers. Soon, you will be able to set a username and share it with your friends instead of your phone number. Because of this, WhatsApp is now converting phone numbers into 16-digit numbers, so in the near future you won’t be able to send messages to all numbers as before.

Secondly, with these updates, WhatsApp has recently added a feature where, when you link the QR code in the browser or even in MPWA, your phone will start counting how many days the QR session has been active for a limited period, after which you will be logged out automatically.

Thirdly, the modifications you are making to the files are not effective at all. For example, some of you replaced the OneXGen library with the WhiskeySockets library, which means you will no longer be able to send list messages, and many features will stop working such as sending products, sending messages to channels, and many others.

Fourthly, modifying verification files just to bypass the issue that prevents you from logging in via QR only bypasses it temporarily, it does not fix the actual problem. The issue is related to WhatsApp's changes that are meant to prevent long-term QR sessions from continuing to work.

===================

In the end, my silence does not mean I am not reading your comments. You can see me online every day, but I am monitoring WhatsApp until it finishes its changes so I can start working on the new update based on whatever WhatsApp settles on. It is impossible to update and break the code every single day just because WhatsApp pushes daily changes. So I am waiting until WhatsApp developers finish, so we know our next step.


Indonesian

Saya sudah memberi tahu kalian sebelumnya bahwa WhatsApp sedang merilis pembaruan baru. Pembaruan ini dikirimkan ke beberapa nomor terlebih dahulu dan nanti akan sampai ke semua nomor di seluruh dunia.

Pembaruan pertama adalah mengubah nomor telepon menjadi nomor JID untuk menyembunyikan nomor pengirim dan penerima. Dalam waktu dekat, kalian akan bisa membuat username dan mengirimkannya ke teman kalian sebagai pengganti nomor telepon. Karena itu, WhatsApp sekarang sedang mengonversi nomor telepon menjadi nomor 16 digit, sehingga nanti kalian tidak akan bisa mengirim pesan ke semua nomor seperti sebelumnya.

Kedua, dengan pembaruan ini, WhatsApp baru-baru ini menambahkan fitur bahwa ketika kalian menautkan QR di browser atau bahkan di MPWA, ponsel kalian akan mulai menghitung berapa hari sesi QR itu aktif dalam jangka waktu tertentu, dan setelah itu kalian akan otomatis keluar.

Ketiga, perubahan yang kalian lakukan pada file sama sekali tidak berguna. Misalnya, beberapa dari kalian mengganti library OneXGen dengan WhiskeySockets, yang berarti kalian tidak bisa lagi mengirim pesan daftar, dan banyak fitur akan hilang seperti mengirim produk, mengirim pesan ke channel, dan lainnya.

Keempat, mengubah file verifikasi hanya untuk melewati masalah login QR berarti kalian hanya melewati masalahnya, bukan memperbaikinya. Masalahnya terkait dengan perubahan yang dibuat WhatsApp untuk mencegah sesi QR tetap aktif dalam waktu lama.

===================

Pada akhirnya, diamnya saya bukan berarti saya tidak membaca komentar kalian. Kalian bisa melihat saya online setiap hari, tetapi saya sedang menunggu sampai WhatsApp menyelesaikan semua perubahan mereka agar saya bisa mulai mengerjakan pembaruan baru berdasarkan apa yang sudah stabil. Tidak mungkin memperbarui dan merusak kode setiap hari hanya karena WhatsApp melakukan perubahan harian. Jadi saya sedang menunggu sampai para developer WhatsApp selesai agar kita tahu langkah kita selanjutnya.


Spanish

Ya les informé anteriormente que WhatsApp está lanzando nuevas actualizaciones. Estas actualizaciones llegan primero a algunos números y luego se extenderán al resto del mundo.

La primera actualización consiste en convertir los números de teléfono en números JID para ocultar el número del remitente y del destinatario. Muy pronto podrán configurar un nombre de usuario y enviarlo a sus amigos en lugar de su número de teléfono. Por esta razón, WhatsApp está convirtiendo los números en códigos de 16 dígitos, y pronto no podrán enviar mensajes a todos los números como antes.

En segundo lugar, con estas actualizaciones, WhatsApp añadió recientemente una función en la que, cuando enlazas el código QR en el navegador o incluso en MPWA, tu teléfono comenzará a contar los días que la sesión QR ha estado activa por un período limitado, después del cual se cerrará automáticamente.

En tercer lugar, las modificaciones que están haciendo a los archivos no sirven de nada. Por ejemplo, algunos reemplazaron la librería OneXGen por WhiskeySockets, lo que significa que ya no podrán enviar mensajes de listas, y muchas funciones desaparecerán, como enviar productos, enviar mensajes a canales, y más.

En cuarto lugar, modificar los archivos de verificación solo para omitir el problema del inicio de sesión por QR significa que solo lo están evitando temporalmente, pero no lo están solucionando. El problema está relacionado con los cambios que está haciendo WhatsApp para evitar que las sesiones QR se mantengan activas durante mucho tiempo.

===================

Al final, mi silencio no significa que no esté leyendo sus comentarios. Ustedes pueden verme conectado todos los días, pero estoy esperando a que WhatsApp termine sus cambios para poder empezar a trabajar en la nueva actualización según lo que se estabilice. Es imposible actualizar y romper el código todos los días solo porque WhatsApp hace cambios diarios. Por eso, estoy esperando a que los desarrolladores de WhatsApp terminen para saber cuál será nuestro siguiente paso.


Hindi

मैंने आपको पहले ही बताया था कि WhatsApp नई अपडेट जारी कर रहा है। ये अपडेट पहले कुछ नंबरों पर भेजी जा रही हैं और धीरे-धीरे दुनिया भर के सभी नंबरों तक पहुँचेंगी।

पहली अपडेट में फोन नंबरों को JID नंबरों में बदला जा रहा है ताकि भेजने वाले और प्राप्त करने वाले का नंबर छिपाया जा सके। जल्द ही आप एक यूज़रनेम सेट कर सकेंगे और अपने दोस्तों को अपना फोन नंबर देने के बजाय वही भेज सकेंगे। इसी वजह से WhatsApp अब फोन नंबरों को 16 अंकों वाले नंबर में बदल रहा है, इसलिए आने वाले समय में आप हर नंबर पर पहले की तरह संदेश नहीं भेज पाएंगे।

दूसरा, इन अपडेट्स के साथ WhatsApp ने हाल ही में एक फ़ीचर जोड़ा है कि जब आप QR को ब्राउज़र में या MPWA में लिंक करते हैं, तो आपका फोन यह गिनना शुरू कर देगा कि QR सत्र कितने दिनों से सक्रिय है, और एक निश्चित अवधि के बाद आपको स्वचालित रूप से लॉगआउट कर दिया जाएगा।

तीसरा, आप जो फ़ाइलों में बदलाव कर रहे हैं, वे बिल्कुल भी काम नहीं करते। उदाहरण के लिए, कुछ लोगों ने OneXGen लाइब्रेरी को WhiskeySockets से बदल दिया, जिसका मतलब है कि आप सूची संदेश नहीं भेज पाएंगे और कई फ़ीचर्स गायब हो जाएँगे जैसे कि उत्पाद भेजना, चैनल संदेश भेजना आदि।

चौथा, QR लॉगिन समस्या को बायपास करने के लिए वेरिफिकेशन फ़ाइलों को संशोधित करना केवल अस्थायी बायपास है — इससे असली समस्या हल नहीं होती। यह समस्या WhatsApp द्वारा किए जा रहे परिवर्तनों से जुड़ी है, जो लंबे समय तक QR सत्र को सक्रिय रहने से रोकने के लिए की जा रही हैं।

===================

अंत में, मेरा चुप रहना इसका मतलब नहीं है कि मैं आपकी टिप्पणियाँ नहीं पढ़ रहा। आप मुझे रोज़ ऑनलाइन देखते हैं, लेकिन मैं WhatsApp के बदलाव पूरे होने का इंतज़ार कर रहा हूँ ताकि मैं नई अपडेट पर काम शुरू कर सकूँ। हर दिन WhatsApp के दैनिक अपडेट के कारण कोड को तोड़ना और ठीक करना संभव नहीं है। इसलिए मैं इंतज़ार कर रहा हूँ कि WhatsApp डेवलपर्स कब समाप्त करते हैं ताकि हमें पता चले कि अगला कदम क्या होगा।

Agree

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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


DoniaWeB © 2018-2025 | Made with

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.