|
@@ -70,11 +70,16 @@ class WechatTransferSvc
|
|
|
],
|
|
|
'http_errors'=>false,
|
|
|
]);
|
|
|
+ $respArr=json_decode($res->getBody()->getContents(),true);
|
|
|
if($res->getStatusCode()!==200){
|
|
|
- throw new \Exception($res->getBody()->getContents());
|
|
|
+ if(!empty($respArr['message'])){
|
|
|
+ throw new \Exception($respArr['message']);
|
|
|
+ }else {
|
|
|
+ throw new \Exception($res->getBody()->getContents());
|
|
|
+ }
|
|
|
}
|
|
|
return [
|
|
|
- json_decode($res->getBody()->getContents(),true),
|
|
|
+ $respArr,
|
|
|
[$trade_no,$detail_no],
|
|
|
$money
|
|
|
];
|