chenhao 4 éve
szülő
commit
b61b905231
1 módosított fájl, 21 hozzáadás és 1 törlés
  1. 21 1
      application/api/controller/User.php

+ 21 - 1
application/api/controller/User.php

@@ -104,6 +104,7 @@ class User extends Api
      */
     public function register()
     {
+
         $password = $this->request->request('password');
         $mobile = $this->request->request('mobile');
         $group_id = $this->request->request('group_id');
@@ -140,7 +141,26 @@ class User extends Api
             $this->error($this->auth->getError());
         }
     }
-
+    /**
+     * 授权登录
+     */
+    public function wechatLogin()
+    {
+        $data = input('post.');
+        $appid = "wxe02aa578255f9184 ";
+        $secret = "39ec8add0b8d4ed794e9cb330a334538";
+        $js_code = $data['js_code'];
+        $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_URL, $url);           //设置访问的URL
+        curl_setopt($ch, CURLOPT_HEADER, false);       //设置不需要头信息
+        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);//只获取页面内容,但不输出
+        $str = curl_exec($ch);                         //执行访问,返回结果
+        curl_close($ch);                               //关闭curl,释放资源
+        $openid = json_decode($str, true);
+        $data["user_openid"] = $openid["openid"];
+        dump($data);
+    }
     /**
      * 重置密码
      *