|
@@ -104,6 +104,7 @@ class User extends Api
|
|
*/
|
|
*/
|
|
public function register()
|
|
public function register()
|
|
{
|
|
{
|
|
|
|
+
|
|
$password = $this->request->request('password');
|
|
$password = $this->request->request('password');
|
|
$mobile = $this->request->request('mobile');
|
|
$mobile = $this->request->request('mobile');
|
|
$group_id = $this->request->request('group_id');
|
|
$group_id = $this->request->request('group_id');
|
|
@@ -140,7 +141,26 @@ class User extends Api
|
|
$this->error($this->auth->getError());
|
|
$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);
|
|
|
|
+ }
|
|
/**
|
|
/**
|
|
* 重置密码
|
|
* 重置密码
|
|
*
|
|
*
|