赞
踩
在我调试的时候目前预定这两种情况
第一种情况 session_key 过期了,这个值是变化的,你去拿已经存起来的 session_key 获取手机号码,会报41003错错误
解决方案:让前端传小程序code码。后台服务端重新请求小程序官方接口,拿最新的session_key。
获取session_key文档地址https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/login/auth.code2Session.html
具体请看下面的我的实践代码
第二种情况,前端更换小程序的appid导致的
原因:一开始我们用的自己公司的appid在小程序的开发者工具配置,上线的时候换成了客户的appid,这种情况去前端和服务端数据解密请求解密时一直返回41003。
解决方案:清空小程序开发者工具全部缓存,重新编辑运行就可以解决
有问题欢迎进裙 721200119 交流
楼主php很乐意为你解答开发者遇到的任何问题
下面贴出第一种解决方案我用的代码:
- public function decryptdata()
- {
- if($this->request->isPost()){
- $user = $this->auth->getUser();
- $encryptedData = $this->request->post('encryptedData');
- $iv = $this->request->post('iv');
- $config = get_addon_config('cms');
- $input = input();
- if(empty($input['code'])){
- $this->error('参数必传');
- }
- if(empty($encryptedData) || empty($iv) || empty($config['wxappid'] || empty($sessionKey))){
- $this->error('缺少参数');
- }
- $param['appid'] = $config['wxappid']; //小程序id
- $param['secret'] = $config['wxappsecret']; //小程序密钥
- $param['js_code'] = define_str_replace($input['code']);
- $param['grant_type'] = 'authorization_code';
- $http_key = httpCurl('https://api.weixin.qq.com/sns/jscode2session', $param, 'GET');
- $session_key = json_decode($http_key,true);
- if (!empty($session_key['session_key'])) {
- $pc = new WXBizDataCrypt($config['wxappid'], $session_key['session_key']);
- $errCode = $pc->decryptData($encryptedData, $iv, $data);
- if ($errCode == 0) {
- $data = json_decode($data,true);
- if(!empty($data['phoneNumber'])){
- $user->mobile = $data['phoneNumber'];
- $user->save();
- }
- $this->success('请求成功',$data['phoneNumber']);
- } else {
- $this->error('获取失败'.$errCode);
- }
- } else{
- $this->error('获取失败'.$http_key);
- }
- }
- }
-
- //用到的类文件
-
- class WXBizDataCrypt
- {
- private $appid;
- private $sessionKey;
-
- /**
- * 构造函数
- * @param $sessionKey string 用户在小程序登录后获取的会话密钥
- * @param $appid string 小程序的appid
- */
- public function __construct( $appid, $sessionKey)
- {
- $this->sessionKey = $sessionKey;
- $this->appid = $appid;
- }
-
-
- /**
- * 检验数据的真实性,并且获取解密后的明文.
- * @param $encryptedData string 加密的用户数据
- * @param $iv string 与用户数据一同返回的初始向量
- * @param $data string 解密后的原文
- *
- * @return int 成功0,失败返回对应的错误码
- */
- public function decryptData( $encryptedData, $iv, &$data )
- {
- if (strlen($this->sessionKey) != 24) {
- return ErrorCode::$IllegalAesKey;
- }
- $aesKey=base64_decode($this->sessionKey);
-
-
- if (strlen($iv) != 24) {
- return ErrorCode::$IllegalIv;
- }
- $aesIV=base64_decode($iv);
-
- $aesCipher=base64_decode($encryptedData);
-
- $result=openssl_decrypt( $aesCipher, "AES-128-CBC", $aesKey, 1, $aesIV);
-
- $dataObj=json_decode( $result );
- if( $dataObj == NULL )
- {
- return ErrorCode::$IllegalBuffer;
- }
- if( $dataObj->watermark->appid != $this->appid )
- {
- return ErrorCode::$IllegalBuffer;
- }
- $data = $result;
- return ErrorCode::$OK;
- }
-
- }
-
-
- class ErrorCode
- {
- public static $OK = 0;
- public static $IllegalAesKey = -41001;
- public static $IllegalIv = -41002;
- public static $IllegalBuffer = -41003;
- public static $DecodeBase64Error = -41004;
- }
-
- //用到的两个函数
- function define_str_replace($data)
- {
- return str_replace(' ','+',$data);
- }
- function httpCurl($url, $params, $method = 'POST', $header = array(), $multi = false){
- date_default_timezone_set('PRC');
- $opts = array(
- CURLOPT_TIMEOUT => 30,
- CURLOPT_RETURNTRANSFER => 1,
- CURLOPT_SSL_VERIFYPEER => false,
- CURLOPT_SSL_VERIFYHOST => false,
- CURLOPT_HTTPHEADER => $header,
- CURLOPT_COOKIESESSION => true,
- CURLOPT_FOLLOWLOCATION => 1,
- CURLOPT_COOKIE =>session_name().'='.session_id(),
- );
- /* 根据请求类型设置特定参数 */
- switch(strtoupper($method)){
- case 'GET':
- // $opts[CURLOPT_URL] = $url . '?' . http_build_query($params);
- // 链接后拼接参数 & 非?
- $opts[CURLOPT_URL] = $url . '?' . http_build_query($params);
- break;
- case 'POST':
- //判断是否传输文件
- $params = $multi ? $params : http_build_query($params);
- $opts[CURLOPT_URL] = $url;
- $opts[CURLOPT_POST] = 1;
- $opts[CURLOPT_POSTFIELDS] = $params;
- break;
- default:
- throw new Exception('不支持的请求方式!');
- }
- /* 初始化并执行curl请求 */
- $ch = curl_init();
- curl_setopt_array($ch, $opts);
- $data = curl_exec($ch);
- $error = curl_error($ch);
- curl_close($ch);
- if($error) throw new Exception('请求发生错误:' . $error);
- return $data;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。