php一个文件搞定微信jssdk配置:
包括缓存,包括https通讯,获取微信access_token,签名什么的都有。但是防范性编程做得比较少,商业用的话,需要完善下代码。
使用姿势
^ajax(Common.ServerUrl + "GetWX.php", { data: { Type: "config", url: location.href.split('#')[0] }, dataType: 'json', type: 'get', timeout: 5000, success: function(data) { wx.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: '……', // 必填,公众号的唯一标识 timestamp: data.timestamp, // 必填,生成签名的时间戳 nonceStr: data.nonceStr, // 必填,生成签名的随机串 signature: data.signature, // 必填,签名,见附录1 jsApiList: ["getLocation"] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); } }) wx.ready(function() { wx.getLocation({ type: 'wgs84', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02' success: function(res) { var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90 var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。 plus2.storage.setItem("latitude", latitude); plus2.storage.setItem("longitude", longitude); } }); });
服务端
GetWX.php
<"lib/Cache.php"; define($APPID, "……"); define($SECRET, "……") if($_GET['Type'] == "access_token"){ // echo getAccess_token(); } else if($_GET['Type'] == "jsapi_ticket"){ // echo getJsapi_ticket(); } else if($_GET['Type'] == "config"){ $jsapi_ticket = getJsapi_ticket(); $nonceStr = "x".rand(10000,100000)."x"; //随机字符串 $timestamp = time(); //时间戳 $url = $_GET['url']; $signature = getSignature($jsapi_ticket,$nonceStr, $timestamp, $url); $result = array("jsapi_ticket"=>$jsapi_ticket, "nonceStr"=>$nonceStr,"timestamp"=>$timestamp,"url"=>$url,"signature"=>$signature); echo json_encode($result); } function getSignature($jsapi_ticket,$noncestr, $timestamp, $url){ $string1 = "jsapi_ticket=".$jsapi_ticket."&noncestr=".$noncestr."×tamp=".$timestamp."&url=".$url; $sha1 = sha1($string1); return $sha1; } function getJsapi_ticket(){ $cache = new Cache(); $cache = new Cache(7000, 'cache/'); //需要创建cache文件夹存储缓存文件。 //从缓存从读取键值 $key 的数据 $jsapi_ticket = $cache -> get("jsapi_ticket"); $access_token = getAccess_token(); //如果没有缓存数据 if ($jsapi_ticket == false) { $access_token = getAccess_token(); $url = 'https://api.weixin.qq.com/cgi-bin/ticket/getticket'; $data = array('type'=>'jsapi','access_token'=>$access_token); $header = array(); $response = json_decode(curl_https($url, $data, $header, 5)); $jsapi_ticket = $response->ticket; //写入键值 $key 的数据 $cache -> put("jsapi_ticket", $jsapi_ticket); } return $jsapi_ticket; } function getAccess_token(){ $cache = new Cache(); $cache = new Cache(7000, 'cache/'); //从缓存从读取键值 $key 的数据 $access_token = $cache -> get("access_token"); //如果没有缓存数据 if ($access_token == false) { $url = 'https://api.weixin.qq.com/cgi-bin/token'; $data = array('grant_type'=>'client_credential','appid'=>$APPID,'secret'=>$SECRET); $header = array(); $response = json_decode(curl_https($url, $data, $header, 5)); $access_token = $response->access_token; //写入键值 $key 的数据 $cache -> put("access_token", $access_token); } return $access_token; } /** curl 获取 https 请求 * @param String $url 请求的url * @param Array $data 要發送的數據 * @param Array $header 请求时发送的header * @param int $timeout 超时时间,默认30s */ function curl_https($url, $data=array(), $header=array(), $timeout=30){ $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // 跳过证书检查 curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); $response = curl_exec($ch); if($error=curl_error($ch)){ die($error); } curl_close($ch); return $response; } "htmlcode"><"cache/") { $this -> cache_expire = $exp_time; $this -> cache_path = $path; } //returns the filename for the cache private function fileName($key) { return $this -> cache_path . md5($key); } //creates new cache files with the given data, $key== name of the cache, data the info/values to store public function put($key, $data) { $values = serialize($data); $filename = $this -> fileName($key); $file = fopen($filename, 'w'); if ($file) {//able to create the file fwrite($file, $values); fclose($file); } else return false; } //returns cache for the given key public function get($key) { $filename = $this -> fileName($key); if (!file_exists($filename) || !is_readable($filename)) {//can't read the cache return false; } if (time() < (filemtime($filename) + $this -> cache_expire)) {//cache for the key not expired $file = fopen($filename, "r"); // read data file if ($file) {//able to open the file $data = fread($file, filesize($filename)); fclose($file); return unserialize($data); //return the values } else return false; } else return false; //was expired you need to create new } } ?>以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
2024年11月28日
2024年11月28日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]