|
@@ -9,28 +9,44 @@ class Kuaishou extends Base
|
|
|
public $syncAPIClient;
|
|
|
public $serverHost = "https://openapi.kwaixiaodian.com/";
|
|
|
public $webSite = '1688';
|
|
|
- public $access_token = 'ChFvYXV0aC5hY2Nlc3NUb2tlbhJwoKoSq1Hr4odNgoU9P9bwE23fS9T_KUXue57LmD9Nks584givB9Tqi_z05o7KDDvwj3ZAIBzly56LPLr-bekP61JOxIt8lMmuaOEODBndmTz5CrYQfiRIn-mbKwTYDPIXeJZLWN5nwwmaUP-G85DF7xoSOYuaoIMQQbq8-XpVu7XiJ6dNIiBtFILUcnKsia-OUP2G6Xja4G2Ub9uR4rKP7YVWTVe1BCgFMAE';
|
|
|
+ // public $access_token = 'ChFvYXV0aC5hY2Nlc3NUb2tlbhJwoKoSq1Hr4odNgoU9P9bwE23fS9T_KUXue57LmD9Nks584givB9Tqi_z05o7KDDvwj3ZAIBzly56LPLr-bekP61JOxIt8lMmuaOEODBndmTz5CrYQfiRIn-mbKwTYDPIXeJZLWN5nwwmaUP-G85DF7xoSOYuaoIMQQbq8-XpVu7XiJ6dNIiBtFILUcnKsia-OUP2G6Xja4G2Ub9uR4rKP7YVWTVe1BCgFMAE';
|
|
|
+ public $access_token = '3792b63aa93aa4434335c4d3e9a1773d169a36f6c65b965a726a1d3c8b85699e72f758e1';
|
|
|
public $debug = false;
|
|
|
+ public $code = "3792b63aa93aa4434335c4d3e9a1773d169a36f6c65b965a726a1d3c8b85699e72f758e1";
|
|
|
+
|
|
|
+ public function notify()
|
|
|
+ {
|
|
|
+ $data = $this->request->param();
|
|
|
+ var_dump($data);
|
|
|
+ }
|
|
|
+
|
|
|
//
|
|
|
- public function getAccessToken()
|
|
|
+ public function getAccessToken()
|
|
|
{
|
|
|
- //$url = $this->serverHost . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&code={$code}&grant_type=authorization_code";
|
|
|
- $url = 'https://open.kwaixiaodian.com/' . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&grant_type=client_credentials";
|
|
|
+ $url = $this->serverHost . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&code={$this->code}&grant_type=authorization_code";
|
|
|
+ //$url = 'https://open.kwaixiaodian.com/' . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&grant_type=client_credentials";
|
|
|
$Alibabahelper = new Alibabahelper();
|
|
|
$s = $Alibabahelper->curl_https_get($url);
|
|
|
$s = json_decode($s, true);
|
|
|
return $s['access_token'];
|
|
|
}
|
|
|
|
|
|
+ public function getCode()
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
// api请求
|
|
|
public function getOrderDetail()
|
|
|
{
|
|
|
+ //2315900153213958
|
|
|
+ //2314700285800114
|
|
|
$apiType = "open.order.detail";
|
|
|
$method = 'get';
|
|
|
$param = ['oid'=>input('oid')];
|
|
|
$arr['appkey'] = $this->appKey;
|
|
|
$arr['version'] = 1;
|
|
|
- $arr['access_token'] = $this->access_token;
|
|
|
+ $arr['access_token'] = $this->getAccessToken();
|
|
|
$arr['timestamp'] = $this->getMillisecond();
|
|
|
$arr['method'] = trim($apiType);
|
|
|
$arr['param'] = $param ? json_encode($param) : '{}';
|