-
-
Save phpRajat/84c0f16f9d13f362bbd73328f5a29f84 to your computer and use it in GitHub Desktop.
setTimeout(function () { | |
function getAllModules() { | |
return new Promise((resolve) => { | |
const id = _.uniqueId("fakeModule_"); | |
window["webpackJsonp"]( | |
[], { | |
[id]: function (module, exports, __webpack_require__) { | |
resolve(__webpack_require__.c); | |
} | |
}, [id] | |
); | |
}); | |
} | |
var modules = getAllModules()._value; | |
for (var key in modules) { | |
if (modules[key].exports) { | |
if (modules[key].exports.default) { | |
if (modules[key].exports.default.Wap) { | |
store_id = modules[key].i.replace(/"/g, '"'); | |
} | |
} | |
if (modules[key].exports.sendTextMsgToChat) { | |
chat_id = modules[key].i.replace(/"/g, '"'); | |
} | |
} | |
} | |
}, 2000); | |
function _requireById(id) { | |
return webpackJsonp([], null, [id]); | |
} | |
var store_id = 0; | |
var chat_id = 0; | |
var Store = {}; | |
function init() { | |
window.Store = _requireById(store_id).default; | |
window.Store.sendTextMsgToChat = _requireById(chat_id).sendTextMsgToChat; | |
console.log("Store is ready"); | |
window.Store.Chat.find("[email protected]").then((user) => { window.Store.sendTextMsgToChat(user, "hellao"); }); | |
} | |
setTimeout(function () { | |
init(); | |
}, 5000); |
Thanks friend, it works very well. Now how can I send an image?
I updated this code for send image. Please check this.
https://gist.github.com/phpRajat/a6422922efae32914f4dbd1082f3f412
great post bro , but can you describe how to send media files ? i would appreciate it. thanks in advance
undefined window["webpackJsonp"] if using as background script . ..
can it be used in background script if not thent what else. ... . thankyou
want to use it as background script window["webpackJsonp"]
is not available what to do any alternative or way. . .. thankyou
you know how to send stickers to wpp bro?
Is it possible to post full code with all import to help us all.
Thanks
Hello guys, does anyone know how to call these functions from javaScript in delphi?
sendContact not work?
Use this library to automate WhatsApp: https://github.com/open-wa/wa-automate-nodejs
the lib from the comment above is paid for many functions.
Use this library to automate WhatsApp: https://github.com/orkestral/venom
we are free, welcome red hat
window.Store.Chat.find("[email protected]").then((user) => { window.Store.sendTextMsgToChat(user, "hello"); });