Created
May 31, 2019 18:20
-
-
Save phpRajat/84c0f16f9d13f362bbd73328f5a29f84 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not sure what is webpackJsonp. Please help!