赞
踩
今天在处理微信小程序获取用户绑定的手机号的时候,一直报错,错误代码是41001
查看了一下微信的接口代码,代码如下
- <?php
-
- /**
- * error code 说明.
- * <ul>
- * <li>-41001: encodingAesKey 非法</li>
- * <li>-41003: aes 解密失败</li>
- * <li>-41004: 解密后得到的buffer非法</li>
- * <li>-41005: base64加密失败</li>
- * <li>-41016: base64解密失败</li>
- * </ul>
- */
- class ErrorCode
- {
- public static $OK = 0;
- public static $IllegalAesKey = -41001;
- public static $IllegalIv = -41002;
- public static $IllegalBuffer = -41003;
- public static $DecodeBase64Error = -41004;
- }
-
- ?>
- /**
- * 检验数据的真实性,并且获取解密后的明文.
- * @param $encryptedData string 加密的用户数据
- * @param $iv string 与用户数据一同返回的初始向量
- * @param $data string 解密后的原文
- *
- * @return int 成功0,失败返回对应的错误码
- */
- include_once "errorCode.php";
- function decryptData( $appid, $sessionKey,$encryptedData, $iv, &$data )
- {
- if (strlen($sessionKey) != 24) {
- return ErrorCode::$IllegalAesKey;
- }
- $aesKey=base64_decode($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 != $appid )
- {
- return ErrorCode::$IllegalBuffer;
- }
- $data = $result;
- return ErrorCode::$OK;
- }
这里的errorCode.php,就是上面的代码,报41001的错误,就是这里出错了
if (strlen($sessionKey) != 24) {
return ErrorCode::$IllegalAesKey;
}
很明显$sessionKey的长度不是24所以出错了,
检查了前台的js代码,发现sessionKey是从其他文件通过get方式传过来的,最后面有两个等号被省略了,所以长度就不够了,所以报了41001的错误,
重新修改前台代码,不通过get传参,通过放在storage中,再从storage中获取,问题完美的解决。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。