uniapp 之 接入小程序客服
Posted HQ8806
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uniapp 之 接入小程序客服相关的知识,希望对你有一定的参考价值。
目录
配置也需要一步
前言
小程序客服
因老大 看到别人家有在线客服这个功能,就让我也做一个,这个功能很简单
效果图1
代码只需要一步
<button type="default" open-type="contact">在线咨询</button>
代码建议不要把 button属性 改为 view ,我试过 改为 view 无效,其他的没试过,不知道
配置也需要一步
在 官网 小程序 中的功能 ---> 客服 ---> 小程序客服 ---> 添加客服
小程序客服是 小程序自带的 可以直接使用
微信客服需要配置 麻烦 就没有设置
示意图2
配置成功后 用户点击 在线咨询 按钮,就可以直接进入 效果图1 的 对话框
而 客服人员 则通过
点击上面的两种方式中的一种就可以跟用户沟通
小程序客服消息接口,接入及消息接收
public function index(){ //判断是否为认证 if (isset($_GET[‘echostr‘])) { //如果认证去验证 $this->valid(); }else{ //否则接收客户发送消息 $this->responseMsg(); } } //验证前置方法 public function valid() { $echoStr = $_GET["echostr"]; if($this->checkSignature()){ header(‘content-type:text‘); echo $echoStr; exit; }else{ echo $echoStr.‘+++‘.TOKEN; exit; } } //签名校验 private function checkSignature() { //微信加密签名 $signature = $_GET["signature"]; //时间戳 $timestamp = $_GET["timestamp"]; //随机数 $nonce = $_GET["nonce"]; //服务端配置的TOKEN $token = ‘自己配置的TOKEN‘; //将token,时间戳,随机数进行字典排序 $tmpArr = array($token, $timestamp, $nonce); sort($tmpArr, SORT_STRING); //拼接字符串 $tmpStr = implode( $tmpArr ); $tmpStr = sha1( $tmpStr ); if( $tmpStr == $signature ){ return true; }else{ return false; } } public function responseMsg() { //接收来自小程序的客户消息JSON $postStr = $GLOBALS["HTTP_RAW_POST_DATA"]; if (!empty($postStr) && is_string($postStr)){ //禁止引用外部xml实体 //libxml_disable_entity_loader(true); //$postObj = simplexml_load_string($postStr, ‘SimpleXMLElement‘, LIBXML_NOCDATA); $postArr = json_decode($postStr,true); if(!empty($postArr[‘MsgType‘]) && $postArr[‘MsgType‘] == ‘text‘){ //文本消息 $fromUsername = $postArr[‘FromUserName‘]; //发送者openid $toUserName = $postArr[‘ToUserName‘]; //小程序id $textTpl = array( "ToUserName"=>$fromUsername, "FromUserName"=>$toUserName, "CreateTime"=>time(), "MsgType"=>"transfer_customer_service", ); exit(json_encode($textTpl)); }elseif(!empty($postArr[‘MsgType‘]) && $postArr[‘MsgType‘] == ‘image‘){ //图文消息 $fromUsername = $postArr[‘FromUserName‘]; //发送者openid $toUserName = $postArr[‘ToUserName‘]; //小程序id $textTpl = array( "ToUserName"=>$fromUsername, "FromUserName"=>$toUserName, "CreateTime"=>time(), "MsgType"=>"transfer_customer_service", ); exit(json_encode($textTpl)); }elseif($postArr[‘MsgType‘] == ‘event‘ && $postArr[‘Event‘]==‘user_enter_tempsession‘){ //进入客服动作 $fromUsername = $postArr[‘FromUserName‘]; //发送者openid $content = ‘您好,有什么能帮助你?‘; $data=array( "touser"=>$fromUsername, "msgtype"=>"text", "text"=>array("content"=>$content) ); $json = json_encode($data,JSON_UNESCAPED_UNICODE); //php5.4+ $access_token = $this->get_accessToken(); /* * POST发送https请求客服接口api */ $url = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=".$access_token; //以‘json‘格式发送post的https请求 $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_POST, 1); // 发送一个常规的Post请求 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE); if (!empty($json)){ curl_setopt($curl, CURLOPT_POSTFIELDS,$json); } curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); //curl_setopt($curl, CURLOPT_HTTPHEADER, $headers ); $output = curl_exec($curl); if (curl_errno($curl)) { echo ‘Errno‘.curl_error($curl);//捕抓异常 } curl_close($curl); if($output == 0){ echo ‘success‘;exit; } }else{ exit(‘aaa‘); } }else{ echo ""; exit; } } /* 调用微信api,获取access_token,有效期7200s -xzz0704 */ public function get_accessToken(){ /* 在有效期,直接返回access_token */ if(S(‘access_token‘)){ return S(‘access_token‘); } /* 不在有效期,重新发送请求,获取access_token */ else{ $url = ‘https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=wx6056****&secret=30e46f3ef07b****‘; $result = curl_get_https($url); $res = json_decode($result,true); //json字符串转数组 if($res){ S(‘access_token‘,$res[‘access_token‘],7100); return S(‘access_token‘); }else{ return ‘api return error‘; } } } public function message(){ $code = $_GET[‘code‘]; $appid=‘wx6da1e8575401a942‘; $appSecret=‘e64fa3f371bb91bfc2b6c28f008f3174‘; $url = ‘https://api.weixin.qq.com/sns/jscode2session?appid=‘.$appid.‘&secret=‘.$appSecret.‘&js_code=‘.$code.‘&grant_type=authorization_code‘; $res = $this->http_request($url); $res1 = json_decode($res); $access_token = $this->oauth2_access_token($code); $this->ajaxReturn(array(‘data‘=>$res1,‘access_token‘=>$access_token)); } public function oauth2_access_token($code) { $appid=‘wx6da1e8575401a942‘; $appSecret=‘e64fa3f371bb91bfc2b6c28f008f3174‘; $url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=".$appid."&secret=".$appSecret."&code=".$code."&grant_type=authorization_code"; $res = $this->http_request($url); return json_decode($res, true); } protected function http_request($url, $data = null) { $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE); if (!empty($data)){ curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, $data); } curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE); $output = curl_exec($curl); curl_close($curl); return $output; }
以上是关于uniapp 之 接入小程序客服的主要内容,如果未能解决你的问题,请参考以下文章
一个超厉害的智能小程序:可接收你的小程序客服消息,无需开发,自动接入。