mukulhase / WebWhatsapp-Wrapper

An API for sending and receiving messages over web.whatsapp [Working as of 18th May 2018]
https://webwhatsapi.readthedocs.io/en/latest/
MIT License
2.02k stars 796 forks source link

Any Metod to Know my Number? #1110

Closed jesussales closed 2 years ago

jesussales commented 2 years ago

Hi everybody, are there any function or any method to know my number/id??

Thanks in advanced

Alisson2k commented 2 years ago

To know your use getMe, i believe it is only in wapi.js, so add this method on WhatsAPIDriver

def get_me(self):
    return self.wapi_functions.getMe()

I also had to change the code in wapi.js

window.WAPI.getMe = function (done) {
    const me = window.Store.Conn.__x_wid.user;

    if (done !== undefined) done(me);
    return me;
};
jesussales commented 2 years ago

Thanks!!!!