为了获取whatsApp中用户的状态(在线/离线)和输入状态,我在检索resultng对象后使用了Store.Presence.find( phonenumber+ '@c.us').then(function(r){ console.log(r)})
函数我总是处于脱机状态,这是错误的,因为我测试了用我的电话号码。
那么WhatsAPI中最近的状态(在线/离线)状态和打字功能是什么?
答案 0 :(得分:0)
var check = window.setInterval( function() {
Store.Presence.find( phonenumber + '@c.us' ).then( function(d) {
if (d.isOnline) {
console.log( phonenumber + " is ONLINE" );
// do something with it
}
});
} , 2000);
仍在工作。