wupengfei vor 1 Jahr
Ursprung
Commit
1beb9ed306
1 geänderte Dateien mit 24 neuen und 0 gelöschten Zeilen
  1. 24 0
      application/api/controller/Kuaishou.php

+ 24 - 0
application/api/controller/Kuaishou.php

@@ -70,6 +70,30 @@ class Kuaishou extends Base
             'api'=>$apiType ]);
     }
 
+    // 分销订单
+    public function getFxInfo()
+    {
+        $apiType = "open.distribution.cps.kwaimoney.order.detail";
+        $method = 'get';
+        $param = ['oid'=>input('oid')];
+        $arr['appkey'] = $this->appKey;
+        $arr['version'] = 1;
+        $arr['access_token'] = $this->access_token;
+        $arr['timestamp'] = $this->getMillisecond();
+        $arr['method'] = trim($apiType);
+        $arr['param'] = $param ? json_encode($param) : '{}';
+        $arr['signMethod'] = 'MD5';
+        ksort($arr); // 排序
+        $arr['sign'] = $this->getSign($arr, $this->signSecret);
+        $apiInfo = str_replace('.', '/', $arr['method']);
+        $url = $this->serverHost . $apiInfo;
+        $s = static::apiSend($url,$arr,$method);
+        $this->success('ok',[
+            'res'=>$s,
+            'token'=>$arr['access_token'],
+            'param'=>$param,
+            'api'=>$apiType ]);
+    }
 
     public  function getOrderList()
     {