监听未读消息

我们提供了一个回调方法让你能够实时捕获未读消息列表。
注意:使用开放接口需要一定技术能力,请由网站技术人员参考本文代码对接实现。

接口函数:_AIHECONG('unreadCallback')

请确保在页面底部</body>前插入「网页接入代码」再按需调用。
网页接入代码在客服工作台「客户接入渠道」里创建「网页」类型的渠道生成。

示例代码:

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>测试</title>
  <meta name="renderer" content="webkit">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
</head>
<body>

    <script>
      //请确保在页面底部 </body> 前插入接入代码
      //接入代码在客服工作台「客户接入渠道」里创建生成
      (function(d, w, c) {
        var s = d.createElement('script');
        w[c] = w[c] || function() {
          (w[c].z = w[c].z || []).push(arguments);
        };
        s.async = true;
        s.src = 'https://static.ahc.ink/hecong.js';
        if (d.head) d.head.appendChild(s);
      })(document, window, '_AIHECONG');
      _AIHECONG('ini',{ channelId : 'xxxxx' });
      //以上是网页接入代码


      //每当未读消息变化时都会调用该函数
      function unreadCallback(unreadList){
        //未读消息数
        console.log(unreadList.length);
        //未读消息列表
        console.log(unreadList);
      }

      //未读消息的监听与回调
      _AIHECONG('unreadCallback', unreadCallback);

    </script>
</body>
</html>

没找到想要的答案?您还可以通过以下方式咨询我们

在线客服

在线时间:周一至周六 9:00 - 21:00

发起对话

微信公众号

支持时间:周一至周六 9:00 - 21:00

扫码关注

咨询电话

支持时间:周一至周五 9:00 - 18:00

0731 8412 1031