|
@@ -61,7 +61,7 @@ class H5FastPay extends Common
|
|
|
//--------------------------------------------1、基础参数配置------------------------------------------------
|
|
|
|
|
|
$api = 'https://caspay.sandpay.com.cn/agent-main/openapi/';
|
|
|
- $publicKeyPath = ROOT_PATH.'/cert/sand.cer'; //!!! 公钥文件,这个不要改动
|
|
|
+ $publicKeyPath = ROOT_PATH.'/cert/shande/sand.cer'; //!!! 公钥文件,这个不要改动
|
|
|
$priKeyPath = $class->privateKeyPath;
|
|
|
//const PUB_KEY_PATH = 'cert/SAND_PUBLIC_KEY.cer'; //公钥文件
|
|
|
//const PRI_KEY_PATH_2 = 'cert/MID_RSA_PRIVATE_KEY.pfx'; //私钥文件
|
|
@@ -111,5 +111,10 @@ class H5FastPay extends Common
|
|
|
} catch (\Exception $e) {
|
|
|
throw $e;
|
|
|
}
|
|
|
+ $json=json_decode($decryptPlainText,true);
|
|
|
+ if($json['respCode']!='0000'){
|
|
|
+ throw new \Exception($json['respDesc']);
|
|
|
+ }
|
|
|
+ return $json;
|
|
|
}
|
|
|
}
|