溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

使用PHP怎么實(shí)現(xiàn)一個(gè)微信小程序客服消息功能

發(fā)布時(shí)間:2021-02-05 17:50:40 來(lái)源:億速云 閱讀:263 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

使用PHP怎么實(shí)現(xiàn)一個(gè)微信小程序客服消息功能?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

使用步驟

1、開(kāi)啟客服消息

https://mp.weixin.qq.com/wxam...

登錄-開(kāi)發(fā)-開(kāi)發(fā)設(shè)置-消息推送

[]( https://raw.githubusercontent...

點(diǎn)擊“啟動(dòng)”

[]( https://raw.githubusercontent...

URL(服務(wù)器地址):填開(kāi)發(fā)者服務(wù)器對(duì)應(yīng)的url,如 https://xxxxxx/demo.php

Token(令牌):這個(gè)隨便填,要求3-32位。

EncodingAESKey(消息加密密鑰):這個(gè)點(diǎn)擊“隨機(jī)生成”即可。

消息加密方式:可以根據(jù)自己需要選擇,本例選擇”兼容模式“。

數(shù)據(jù)格式:json相對(duì)于xml來(lái)說(shuō),從壓縮效率及傳輸效率更具優(yōu)勢(shì),這里我們選json。

注意:以上操作完后先不要提交,等配置好開(kāi)發(fā)者服務(wù)端后再提交。

2、配置開(kāi)發(fā)者服務(wù)端

檢驗(yàn)signature的PHP示例代碼:

$signature = $_GET["signature"];
 $timestamp = $_GET["timestamp"];
 $nonce = $_GET["nonce"];
 $echostr=$_GET["echostr"];

 $token = TOKEN;//這里改成你第一步操作時(shí)填寫(xiě)的token
 $tmpArr = array($token, $timestamp, $nonce);
 sort($tmpArr, SORT_STRING);
 $tmpStr = implode( $tmpArr );
 $tmpStr = sha1( $tmpStr );

 if ($tmpStr == $signature ) {
 return $echostr;
 } else {
 return false;
 }

官方示例沒(méi)有返回 $echostr ,這個(gè)檢驗(yàn)開(kāi)發(fā)者服務(wù)端是否成功的關(guān)鍵,必須返回。

3、提交消息推送配置

如果沒(méi)有報(bào)錯(cuò),證明配置成功。

使用PHP怎么實(shí)現(xiàn)一個(gè)微信小程序客服消息功能

4、開(kāi)發(fā)者服務(wù)端demo

<?php
//驗(yàn)證signature
//$signature = $_GET["signature"];
//$timestamp = $_GET["timestamp"];
//$nonce = $_GET["nonce"];
//$echostr=$_GET["echostr"];
//
//$token = TOKEN;//這里改成你第一步操作時(shí)填寫(xiě)的token
//$tmpArr = array($token, $timestamp, $nonce);
//sort($tmpArr, SORT_STRING);
//$tmpStr = implode( $tmpArr );
//$tmpStr = sha1( $tmpStr );
//
//if ($tmpStr == $signature ) {
// return $echostr;
//} else {
// return false;
//}
include_once './Xcxmsg.php';
$xcxmsg = new Xcxmsg();
$postStr = file_get_contents('php://input');
if (!$postStr)
 return false;
$postArr = json_decode($postStr, true);
if (!isset($postArr['MsgType']) || !isset($postArr['FromUserName']))
 return false;
$data = ["touser" => $postArr['FromUserName']];
$accessToken = $xcxmsg->getAccessToken();
$url = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=" . $accessToken;
switch ($postArr['MsgType']) {
 case "text":
 //如用戶(hù)發(fā)送的是文字信息,這里處理
 //回復(fù)圖文鏈接,也可以回復(fù)別的類(lèi)型,根據(jù)需要
 $data['msgtype'] = "link";
 $data['link'] = [
  "title" => "hello",
  "description" => "Is Really A Happy Day",
  "url" => "LINK_URL",//連接url
  "thumb_url" =>"THUMB_URL" //圖片url
 ];
 $json = json_encode($data, JSON_UNESCAPED_UNICODE);
 $xcxmsg->curl($json, $url);
 break;
 case "image": //如用戶(hù)發(fā)送圖片消息,進(jìn)入這里
 //服務(wù)端回復(fù) 圖片,也可以回復(fù)別的類(lèi)型,根據(jù)需要
 $data['msgtype'] = "image";
 $data['image'] = ['media_id' => 'media_id值']; // 執(zhí)行 $xcxmsg->upload($accessToken)返回的 media_id
 $json = json_encode($data, JSON_UNESCAPED_UNICODE);
 $xcxmsg->curl($json, $url);
 case "miniprogrampage":
 //如用戶(hù)發(fā)送小程序卡片,進(jìn)入這里
 //這里服務(wù)端回復(fù)小卡片,也可以回復(fù)別的類(lèi)型,根據(jù)需要
 $data['msgtype'] = "miniprogrampage";
 $data['miniprogrampage'] = [
  "title" => "title",
  "pagepath" => "pages/index/index",
  "thumb_media_id" => "media_id值"];// 執(zhí)行 $xcxmsg->upload($accessToken)返回的 media_id
 $json = json_encode($data, JSON_UNESCAPED_UNICODE);
 $xcxmsg->curl($json, $url);
 break;
 case "event":
 //如用戶(hù)進(jìn)入會(huì)話(huà)事件
 //這里可以回復(fù)文本
 $data['msgtype'] = "text";
 $data['text'] = [
  "content" => "Hello World",
  ];
 $json = json_encode($data, JSON_UNESCAPED_UNICODE);
 $xcxmsg->curl($json, $url);
 break;
 default:
}

5、小程序前端

在需要的地方添加以下代碼:

<button open-type="contact" >客服消息</button>

看完上述內(nèi)容,你們掌握使用PHP怎么實(shí)現(xiàn)一個(gè)微信小程序客服消息功能的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI