瀏覽代碼

fix(alibaba-agent): 修正物流信息查询API方法名

- 修复了获取买家视角物流信息的API调用方法名
- 将 alibaba.trade.get.logisticsInfos.buyerView 更新为 alibaba.trade.getLogisticsInfos.buyerView
- 确保API调用与阿里巴巴平台最新接口规范保持一致
shichen 2 月之前
父節點
當前提交
5234a70a70
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/services/ThirdParty/AlibabaAgent/OrderService.php

+ 1 - 1
app/services/ThirdParty/AlibabaAgent/OrderService.php

@@ -443,7 +443,7 @@ class OrderService extends AlibabaAgentBaseService
443
         // --- 调用API ---
443
         // --- 调用API ---
444
         $result = $this->executeParam2(
444
         $result = $this->executeParam2(
445
             self::NAMESPACE,
445
             self::NAMESPACE,
446
-            'alibaba.trade.get.logisticsInfos.buyerView',
446
+            'alibaba.trade.getLogisticsInfos.buyerView',
447
             1,
447
             1,
448
             $businessParams
448
             $businessParams
449
         );
449
         );