Selaa lähdekoodia

园区模糊搜索

chenhao 4 vuotta sitten
vanhempi
commit
9c227b7b16
1 muutettua tiedostoa jossa 10 lisäystä ja 11 poistoa
  1. 10 11
      application/api/controller/User.php

+ 10 - 11
application/api/controller/User.php

@@ -156,19 +156,18 @@ class User extends Api
             "Accept:application/json"
         );
         $url = "https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$secret&js_code=$js_code&grant_type=authorization_code";
-        $ch = curl_init();                             //初始化
-//        curl_setopt($ch,CURLOPT_HTTPHEADER,$headerArray);
-        curl_setopt($ch, CURLOPT_URL, $url);           //设置访问的URL
-        curl_setopt($ch, CURLOPT_HEADER, false);       //设置不需要头信息
-        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);//只获取页面内容,但不输出
+        $ch = curl_init();
+        $data = array('user' => 'xxx', 'password' => 'yyy');
+        curl_setopt($ch, CURLOPT_URL, $url);
+        curl_setopt($ch, CURLOPT_POST, 1);
+        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
+        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
         curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
-        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
-        curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
-
-        $str = curl_exec($ch);                         //执行访问,返回结果
+        $result = curl_exec($ch);
+        echo $result;
         curl_close($ch);                               //关闭curl,释放资源
-        dump($str);die;
-        $openid = json_decode($str, true);
+        dump($result);die;
+        $openid = json_decode($result, true);
         $data["user_openid"] = $openid["openid"];
 
     }