wupengfei 1 gadu atpakaļ
vecāks
revīzija
c0f82dc56d
1 mainītis faili ar 11 papildinājumiem un 18 dzēšanām
  1. 11 18
      application/api/controller/Kuaishou.php

+ 11 - 18
application/api/controller/Kuaishou.php

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