|
@@ -18,8 +18,7 @@ class Kuaishou extends Base
|
|
{
|
|
{
|
|
$data = $this->request->param();
|
|
$data = $this->request->param();
|
|
$url = $this->serverHost . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&code={$data['code']}&grant_type=authorization_code";
|
|
$url = $this->serverHost . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&code={$data['code']}&grant_type=authorization_code";
|
|
- $Alibabahelper = new Alibabahelper();
|
|
|
|
- $s = $Alibabahelper->curl_https_get($url);
|
|
|
|
|
|
+ $s = $this->curl_https_get($url);
|
|
$s = json_decode($s, true);
|
|
$s = json_decode($s, true);
|
|
var_dump($data,$s);
|
|
var_dump($data,$s);
|
|
// return isset($s['access_token']) ? $s['access_token'] : '';
|
|
// return isset($s['access_token']) ? $s['access_token'] : '';
|
|
@@ -31,8 +30,7 @@ class Kuaishou extends Base
|
|
{
|
|
{
|
|
// $url = $this->serverHost . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&code={$this->code}&grant_type=authorization_code";
|
|
// $url = $this->serverHost . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&code={$this->code}&grant_type=authorization_code";
|
|
$url = $this->serverHost . "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}&grant_type=client_credentials";
|
|
- $Alibabahelper = new Alibabahelper();
|
|
|
|
- $s = $Alibabahelper->curl_https_get($url);
|
|
|
|
|
|
+ $s = $this->curl_https_get($url);
|
|
$s = json_decode($s, true);
|
|
$s = json_decode($s, true);
|
|
return isset($s['access_token']) ? $s['access_token'] : '';
|
|
return isset($s['access_token']) ? $s['access_token'] : '';
|
|
}
|
|
}
|
|
@@ -139,15 +137,12 @@ class Kuaishou extends Base
|
|
$this->success('ok',['res'=>$s]);
|
|
$this->success('ok',['res'=>$s]);
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- public function apiSend($url,$arr,$method)
|
|
|
|
|
|
+ private function apiSend($url,$arr,$method)
|
|
{
|
|
{
|
|
- $Alibabahelper = new Alibabahelper();
|
|
|
|
if ($method == 'get') {
|
|
if ($method == 'get') {
|
|
- $s = $Alibabahelper->curl_https_get($url. '?' . http_build_query($arr, '', '&'), array());
|
|
|
|
|
|
+ $s = $this->curl_https_get($url. '?' . http_build_query($arr, '', '&'), array());
|
|
} else {
|
|
} else {
|
|
- $s = $Alibabahelper->curl_https_post($url, $arr);
|
|
|
|
|
|
+ $s = $this->curl_https_post($url, $arr);
|
|
}
|
|
}
|
|
return json_decode($s, true);
|
|
return json_decode($s, true);
|
|
}
|
|
}
|
|
@@ -186,12 +181,6 @@ class Kuaishou extends Base
|
|
return sprintf('%.0f', (floatval($t1) + floatval($t2)) * 1000);
|
|
return sprintf('%.0f', (floatval($t1) + floatval($t2)) * 1000);
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-}
|
|
|
|
-class Alibabahelper {
|
|
|
|
- function __construct() {
|
|
|
|
- }
|
|
|
|
private function curl_get_contents($url, $data = array(), $https = false) {
|
|
private function curl_get_contents($url, $data = array(), $https = false) {
|
|
$results['error'] = '';
|
|
$results['error'] = '';
|
|
$results['status'] = 0;
|
|
$results['status'] = 0;
|
|
@@ -224,14 +213,18 @@ class Alibabahelper {
|
|
return $results['data']; // 返回数据
|
|
return $results['data']; // 返回数据
|
|
|
|
|
|
}
|
|
}
|
|
- public function curl_https_post($url, $data) {
|
|
|
|
|
|
+
|
|
|
|
+ private function curl_https_post($url, $data) {
|
|
return $this->curl_get_contents($url, $data, true);
|
|
return $this->curl_get_contents($url, $data, true);
|
|
}
|
|
}
|
|
- public function curl_https_get($url) {
|
|
|
|
|
|
+
|
|
|
|
+ private function curl_https_get($url) {
|
|
return $this->curl_get_contents($url, array(), true);
|
|
return $this->curl_get_contents($url, array(), true);
|
|
}
|
|
}
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+
|