Maison  >  Article  >  développement back-end  >  Comment implémenter la fonction de partage personnalisé de WeChat basée sur thinkPHP

Comment implémenter la fonction de partage personnalisé de WeChat basée sur thinkPHP

墨辰丷
墨辰丷original
2018-06-01 10:27:041714parcourir

Cet article présente principalement la fonction de partage personnalisé WeChat basée sur thinkPHP et analyse les compétences opérationnelles associées de thinkPHP appelant l'interface WeChat pour implémenter la fonction de partage personnalisé sous forme d'exemples. Les amis dans le besoin peuvent s'y référer

.

Sur de nombreux grands sites Web, nous verrons que vous pouvez partager des données sur WeChat ou QQ ou d'autres plateformes en cliquant sur Partager. Jetons un coup d'œil à une version PHP du code de partage personnalisé WeChat. Il n'y a aucun problème à faire référence au. code développé par le responsable.

Le partage nécessite l'authentification du compte d'abonnement WeChat ou du compte de service.

code php (thinkphp) :

$appid='xxx';
$appsecret='xxxx';
$timestamp = time();
$noncestr = $this->getRandStr(15);
// dump();
$url = 'https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token='. $this->get_token($appid,$appsecret) .'&type=jsapi';
$ret_json = $this->curl_get_contents($url);
$ret = json_decode($ret_json);
$ticket = $ret-> ticket;
//var_dump($ret);
$strvalue = 'jsapi_ticket='.$ticket.'&noncestr='.$noncestr.'&timestamp='.$timestamp.'&url=http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
$signature = sha1($strvalue);
$this->assign('timestamp',$timestamp);
$this->assign('nonceStr',$noncestr);
$this->assign('signature',$signature);
function get_token($appid,$appsecret){
 if(S('access_token')) return S('access_token');
 $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$appid&secret=$appsecret";
 $ret_json = $this->curl_get_contents($url);
 $ret = json_decode($ret_json);
 if($ret -> access_token){
 S('access_token',$ret -> access_token,7200);
 return $ret -> access_token;
 }
}
function is_weixin(){
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger') !== false ) {
return true;
}
return false;
}
function getRandStr($length){
 $str = 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
 $randString = '';
 $len = strlen($str)-1;
 for($i = 0;$i < $length;$i ++){
 $num = mt_rand(0, $len);
 $randString .= $str[$num];
 }
 return $randString;
}
function curl_get_contents($url){
 $ch = curl_init();
 curl_setopt($ch, CURLOPT_URL, $url);
 curl_setopt($ch, CURLOPT_TIMEOUT, 1);
 curl_setopt($ch, CURLOPT_MAXREDIRS, 200);
 curl_setopt($ch, CURLOPT_USERAGENT, _USERAGENT_);
 curl_setopt($ch, CURLOPT_REFERER, _REFERER_);
 @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
 $r = curl_exec($ch);
 curl_close($ch);
 return $r;
}

Code js : Doit être importé : http://res.wx.qq.com/open/js/jweixin-1.0.0.js

wx.config({
 debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
 appId: &#39;wxae7c36a1349c5868&#39;, // 必填,公众号的唯一标识
 timestamp: &#39;{$timestamp}&#39;, // 必填,生成签名的时间戳
 nonceStr: &#39;{$nonceStr}&#39;, // 必填,生成签名的随机串
 signature: &#39;{$signature}&#39;,// 必填,签名,见附录1
 jsApiList: [&#39;onMenuShareTimeline&#39;,&#39;onMenuShareAppMessage&#39;] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
});
wx.ready(function(){
wx.onMenuShareTimeline({
 title: &#39;{$contentInfo.title}&#39;, // 分享标题
 link: window.location.href, // 分享链接
 imgUrl: &#39;http://&#39;+window.location.host+&#39;{$categoryInfo.image}&#39;, // 分享图标
 success: function () {
 // 用户确认分享后执行的回调函数
 //alert(1111);
 //fxfunc();
 },
 cancel: function () {
 // 用户取消分享后执行的回调函数
 //alert("您取消了分享");
 }
});
wx.onMenuShareAppMessage({
 title: &#39;{$contentInfo.title}&#39;, // 分享标题
 desc: removeHTMLTag(&#39;{$contentInfo.content}&#39;), // 分享描述
 link: window.location.href, // 分享链接
 imgUrl: &#39;http://&#39;+window.location.host+&#39;{$categoryInfo.image}&#39;, // 分享图标
 type: &#39;&#39;, // 分享类型,music、video或link,不填默认为link
 dataUrl: &#39;&#39;, // 如果type是music或video,则要提供数据链接,默认为空
 success: function () {
 // 用户确认分享后执行的回调函数
 //fxfunc();
 },
 cancel: function () {
 //alert("您取消了分享");
 // 用户取消分享后执行的回调函数
 }
});
 // config信息验证后会执行ready方法,所有接口调用都必须在config接口获得结果之后,config是一个客户端的异步操作,所以如果需要在页面加载时就调用相关接口,则须把相关接口放在ready函数中调用来确保正确执行。对于用户触发时才调用的接口,则可以直接调用,不需要放在ready函数中。
});
function removeHTMLTag(str) {
 str = str.replace(/<\/?[^>]*>/g,&#39;&#39;); //去除HTML tag
 str = str.replace(/[ | ]*\n/g,&#39;\n&#39;); //去除行尾空白
 //str = str.replace(/\n[\s| | ]*\r/g,&#39;\n&#39;); //去除多余空行
 str=str.replace(/ /ig,&#39;&#39;);//去掉 
 return str;
}

Résumé : Ce qui précède est l'intégralité du contenu de cet article, j'espère qu'il sera utile à l'étude de chacun.

Recommandations associées :

php array_multisort Explication détaillée et exemples de tableaux de tri

Lecture PHP Plusieurs façons d'obtenir des fichiers volumineux

5 façons d'implémenter des répertoires récursifs en PHP

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn