From 750a5472fa20bbd7cbb0f5b50af7b363f619ce15 Mon Sep 17 00:00:00 2001 From: li Date: Fri, 29 May 2026 21:35:01 +0800 Subject: [PATCH] =?UTF-8?q?fix(alinpay):=20=E7=BD=91=E5=85=B3=E5=9F=9F?= =?UTF-8?q?=E5=90=8D=20fallback=20=E7=94=B1=20fantianchuangshi.com=20?= =?UTF-8?q?=E8=BF=81=E8=87=B3=20hypayment.net?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 第三方支付网关改版迁移域名。DB配置已补 domain 字段, 同步更新代码回退默认值。 appid/secret/product_id/请求格式不变, 经账户查询验证新网关可用。 --- extend/pay/AlinPay.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extend/pay/AlinPay.php b/extend/pay/AlinPay.php index f7dd384..6eb3cb5 100644 --- a/extend/pay/AlinPay.php +++ b/extend/pay/AlinPay.php @@ -64,8 +64,8 @@ class AlinPay $config = json_decode($config, true); $this->config = $config; - // 域名从配置读取,回退默认值 - $this->domain = $config['domain'] ?? 'https://alinintermon-api.fantianchuangshi.com'; + // 域名从配置读取,回退默认值(2026-05 第三方网关由 fantianchuangshi.com 迁至 hypayment.net) + $this->domain = $config['domain'] ?? 'https://alinintermon-api.hypayment.net'; } /**