- 调用微信转账接口报超过单笔转账上下限,核实产品设置是否准确,怎么解决?
调用微信转账接口,报错信息: Error message: Client error: `POST https://api.mch.weixin.qq.com/v3/fund-app/mch-transfer/transfer-bills` resulted in a `400 Bad Request` response: {"code":"INVALID_REQUEST","message":"超过单笔转账上下限,核实产品设置是否准确"} 商户后台开通了转账功能,转账场景为佣金报酬:1005,转账额度也是正常: [图片] 为啥提示超过单笔转账上下限,核实产品设置是否准确? 商户ID:1619120622
05-05 - 调用微信转账接口报400错误,怎么解决?
调用微信转账接口报错: Error message: Client error: `POST https://api.mch.weixin.qq.com/v3/fund-app/mch-transfer/transfer-bills` resulted in a `400 Bad Request` response: {"code":"PARAM_ERROR","message":"请确认待处理的消息是否为加密后的密文"} 代码: $promise = $instance ->chain('v3/fund-app/mch-transfer/transfer-bills') ->postAsync([ 'json' => [ 'appid' => WX_APPID, 'out_bill_no' => $out_bill_no, 'openid' => $open_id, 'user_name' => $user_nickname, 'transfer_amount' => $amount, 'transfer_remark' => '用户佣金提现', 'notify_url' => $callback_url, 'user_recv_perception' => '平台佣金', 'transfer_scene_id' => '1005', 'transfer_scene_report_infos' => [ [ 'info_type' => '岗位类型', 'info_content' => '分销商', ], [ 'info_type' => '报酬说明', 'info_content' => '订单佣金提现', ], ], ], 'headers' => [ 'Wechatpay-Serial' => $platformCertificateSerial, ], ])->then(static function($response) { self::$response = $response; // 正常逻辑回调处理 Log::info('Refund body: ' . $response->getBody()); })->otherwise(static function($e) { // 异常错误处理 Log::info('Error message: ' . $e->getMessage()); if ($e instanceof \GuzzleHttp\Exception\RequestException && $e->hasResponse()) { $r = $e->getResponse(); Log::info('Error StatusCode: ' . $r->getStatusCode() . ' ' . $r->getReasonPhrase()); Log::info('Error body: ' . $r->getBody()); } Log::info('TraceAsString: ' . $e->getTraceAsString()); }); // 同步等待 $promise->wait();
05-05 - 微信开发工具一直提示灯塔上报失败
打开微信开发工具,一直报灯塔上报失败 [图片] [图片]
04-15 - 微信开发工具更新新版后一直提示灯塔上报失败,怎么解决?
[图片] 开发工具一直报灯塔上报失败
04-14 - 微信开发工具更新新版后一直提示灯塔上报失败,怎么解决?
[图片]
04-11 - 安装新版微信开发者工具后导入项目模拟器启动失败,怎么解决?
[图片] [图片] 项目里所有文件里引用文件路径都要改,之前老版本微信开发者工具构建可以找到路径,新版构建后识别不了
04-05 - 小程序需要每年审核(年审)吗?
我小程序2022年1月做的微信认证,至今没有付过300审核费,今天突然收到小程序年审通知,是否每年都要交300元年审费用? 之前说的小程序认证一次,后续无需再次认证的吗? [图片] [图片] [图片]
2023-11-13