|
@@ -62,17 +62,48 @@ class Kuaishou extends Base
|
|
|
$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'=>'open.seller.order.fee.detail' ]);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public function getOrderList()
|
|
|
+ {
|
|
|
+ $apiType = "open.order.detail";
|
|
|
+ $method = 'get';
|
|
|
+ $param = ['orderId'=>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]);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public function apiSend($url,$arr,$method)
|
|
|
+ {
|
|
|
$Alibabahelper = new Alibabahelper();
|
|
|
if ($method == 'get') {
|
|
|
$s = $Alibabahelper->curl_https_get($url. '?' . http_build_query($arr, '', '&'), array());
|
|
|
} else {
|
|
|
$s = $Alibabahelper->curl_https_post($url, $arr);
|
|
|
}
|
|
|
- //var_dump($arr,$url. '?' . http_build_query($arr, '', '&'), array());
|
|
|
- $s = json_decode($s, true);
|
|
|
- $this->success('ok',['res'=>$s,'token'=>$arr['access_token'],'param'=>$param,'api'=>'open.seller.order.fee.detail' ]);
|
|
|
+ return json_decode($s, true);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
public function getSign($params, $key) {
|
|
|
$unSignParaString = $this->formatQueryParaMap($params, false);
|
|
|
$signStr = (md5($unSignParaString . "&signSecret=" . $this->signSecret));
|