Yesterday at 04:57 PM1 day 6 hours ago, Imanudin said:keduanya benar, resource gratisan dan pengembang 😂wkwk😅
Yesterday at 05:26 PM1 day 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.
23 hours ago23 hr 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 1Go to this dir ==> "node_modules/@onexgen/baileys/lib/Utils/validate-connection.d.ts" and replace the whole code of this file with below codeimport { 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
23 hours ago23 hr 7 minutes ago, GMods said:not working for me, im using latest versionRestart nodejs and see the magic
18 hours ago18 hr 5 hours ago, GMods said:not working for me, im using latest versioni give you the step:Stop your Node server.Download the files validate-connection.js and validate-connection.d.ts from the links provided below.Go to the directory:/your_mpwa_directory/node_modules/@onexgen/baileys/lib/Utils/Replace the existing validate-connection.js and validate-connection.d.ts files with the new ones you just downloaded.Start your Node server again.Try reconnecting your WhatsApp account.Thanks for @jjsons for the solution.validate-connection.js validate-connection.d.ts Edited 18 hours ago18 hr by Azhar Azziz
17 hours ago17 hr 13 minutes ago, Azhar Azziz said:i give you the step:Stop your Node server.Download the files validate-connection.js and validate-connection.d.ts from the links provided below.Go to the directory:/your_mpwa_directory/node_modules/@onexgen/baileys/lib/Utils/Replace the existing validate-connection.js and validate-connection.d.ts files with the new ones you just downloaded.Start your Node server again.Try reconnecting your WhatsApp account.Thanks for @jjsons for the solution.validate-connection.js validate-connection.d.tsthankyou very much, now work perfectly
10 hours ago10 hr 2 hours ago, IT The Explorer said:Tidak bisa menambahkan Tombol pada button message mr @Magd AlmuntaserOn 10/26/2025 at 8:44 AM, Azhar Azziz said:replace this file in this path:resources/themes/vuexy/views/ajax/messagesformbutton.blade.php
9 hours ago9 hr 1 hour ago, Azhar Azziz said: 3 hours ago, IT The Explorer said: 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/messagesThanx u very much brother kuh1 hour ago, Azhar Azziz said: 3 hours ago, IT The Explorer said: 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/messagesThanx so much brother kuh
8 hours ago8 hr who else is getting error on the webhook when repling to messeges from business acounts? Edited 7 hours ago7 hr by digil digil
7 hours ago7 hr Min, aku install di appanel sudah berhasil tapi sat kirim type button yg ada url tidak bisa terkirim dan muncul ini.
7 hours ago7 hr 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.if its buttone message send with image it will fix this issue
7 hours ago7 hr 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
5 hours ago5 hr @digil digil when i install in plesk,cloudpanel there is no problem but when i move to aapanel nginx image url doesn't work.
5 hours ago5 hr 1 minute ago, adit_a said:@digil digil when i install in plesk,cloudpanel there is no problem but when i move to aapanel nginx image url doesn't work.are you sending using api?
4 hours ago4 hr @digil digil it autoply message and for api it is no problem.@Magd Almuntaser Bro, untuk aplikasi ini "paling cocok" di panel apa??
4 hours ago4 hr On 11/11/2025 at 2:18 PM, Fabricio Lopes said:🧩 Integração com API MPWA – Dúvida TécnicaOlá 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:Mensagens de áudio não são capturadas pelo webhook;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! 👋you will share this? or is paid?
3 hours ago3 hr 14 hours ago, Azhar Azziz said:i give you the step:Stop your Node server.Download the files validate-connection.js and validate-connection.d.ts from the links provided below.Go to the directory:/your_mpwa_directory/node_modules/@onexgen/baileys/lib/Utils/Replace the existing validate-connection.js and validate-connection.d.ts files with the new ones you just downloaded.Start your Node server again.Try reconnecting your WhatsApp account.Thanks for @jjsons for the solution.validate-connection.js validate-connection.d.tsstill error for me ...
1 hour ago1 hr Bahasa IndonesiaSolusi Login Qr/Kode Login untuk sementara waktu sambil menunggu update terbaru :Lakukan hal berikut :1. Matikan server NodeJs2. Hapus dependensi : npm uninstall @onexgen/baileys3. Install dependensi : npm install @whiskeysockets/baileys4. Pindahkan file berikut ke masing-masing direktori :whatsApp.js ke MPWA/servermessageProcessor.js ke MPWA/server/controllershelper.js ke MPWA/server/lib5. Hapus node_modules6. Install node_modules : npm install7. Mulai ulang NodeJsSemoga bermanfaat.EnglishSolution for Qr Login & Login Code temporarily while waiting for the latest update.Do the following:1. Turn off the NodeJs server2. Remove dependencies : npm uninstall @onexgen/baileys3. Install dependensi : npm install @whiskeysockets/baileys4. Move the following files to each directory:whatsApp.js to MPWA/servermessageProcessor.js to MPWA/server/controllershelper.js to MPWA/server/lib5. Delete node_modules6. Install node_modules : npm install7. Restart NodeJsHope it is useful.whatsapp.js helper.js messageProcessor.js Edited 1 hour ago1 hr by wong
1 hour ago1 hr 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.IndonesianSaya 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.SpanishYa 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 डेवलपर्स कब समाप्त करते हैं ताकि हमें पता चले कि अगला कदम क्या होगा।
1 hour ago1 hr 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.IndonesianSaya 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.SpanishYa 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.