|
@@ -70,6 +70,30 @@ class Kuaishou extends Base
|
|
|
'api'=>$apiType ]);
|
|
|
}
|
|
|
|
|
|
+ public function getOrderFee()
|
|
|
+ {
|
|
|
+ $apiType = "open.seller.order.fee.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,
|
|
|
+ 'token'=>$arr['access_token'],
|
|
|
+ 'param'=>$param,
|
|
|
+ 'api'=>$apiType ]);
|
|
|
+ }
|
|
|
+
|
|
|
// 分销订单
|
|
|
public function getFxInfo()
|
|
|
{
|