返回介绍

客服

发布于 2021-04-03 04:02:28 字数 4621 浏览 1301 评论 0 收藏 0

使用客服系统可以向用户发送消息以及群发消息,客服的管理等功能。

客服管理

获取所有客服

$app->customer_service->list();

获取所有在线的客服

$app->customer_service->online();

添加客服

$app->customer_service->create('foo@test', '客服1');

修改客服

$app->customer_service->update('foo@test', '客服1');

删除账号

$app->customer_service->delete('foo@test');

设置客服头像

$app->customer_service->setAvatar('foo@test', $avatarPath); // $avatarPath 为本地图片路径,非 URL

获取客服与客户聊天记录

$app->customer_service->http://127.0.0.1:4000/official-account/messages($startTime, $endTime, $msgId = 1, $number = 10000);

示例:

$records = $app->customer_service->http://127.0.0.1:4000/official-account/messages('2015-06-07', '2015-06-21', 1, 20000);

主动发送消息给用户

$app->customer_service->message($message)->to($openId)->send();

$message 为消息对象或文本,请参考:消息

示例:

$app->customer_service->message('hello')
                  >  ->to('oV-gpwdOIwSI958m9osAhGBFxxxx')
                  >  ->send();

指定客服发送消息

$app->customer_service->message($message)
                      >  ->from('account@test')
                      >  ->to($openId)
                      >  ->send();

$message 为消息对象或文本,请参考:消息

示例:

$app->customer_service->message('hello')
                  >  ->from('kf2001@gh_176331xxxx')
                  >  ->to('oV-gpwdOIwSI958m9osAhGBFxxxx')
                  >  ->send();

邀请微信用户加入客服

以账号 foo@test 邀请 微信号 为 xxxx 的微信用户加入客服。

$app->customer_service->invite('foo@test', 'xxxx');

客服会话控制

创建会话

$app->customer_service_session->create('test1@test', 'OPENID');

关闭会话

$app->customer_service_session->close('test1@test', 'OPENID');

获取客户会话状态

$app->customer_service_session->get('OPENID');

获取客服会话列表

$app->customer_service_session->list('test1@test');

获取未接入会话列表

$app->customer_service_session->waiting();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文