WhatsApp“存在”和“打字”Javascript功能

时间:2017-12-22 13:14:43

标签: javascript whatsapp whatsapi

为了获取whatsApp中用户的状态(在线/离线)和输入状态,我在检索resultng对象后使用了Store.Presence.find( phonenumber+ '@c.us').then(function(r){ console.log(r)})函数我总是处于脱机状态,这是错误的,因为我测试了用我的电话号码。

那么WhatsAPI中最近的状态(在线/离线)状态和打字功能是什么?

1 个答案:

答案 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);

仍在工作。