request->params([ ['url', ''], ['scopes', ''] ]); $wechat_auth_service = new WechatAuthService(); return success($wechat_auth_service->authorization($data['url'], $data['scopes'])); } /** * 授权登录 * @return Response * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException */ public function login(){ $data = $this->request->params([ ['code', ''], ]); $wechat_auth_service = new WechatAuthService(); return success($wechat_auth_service->loginByCode($data['code'])); } /** * 注册 * @return Response */ public function register(){ $data = $this->request->params([ ['openid', ''], ['mobile', ''], ]); //参数验证 $this->validate($data, [ 'mobile' => 'mobile' ]); $wechat_auth_service = new WechatAuthService(); return success($wechat_auth_service->register($data['openid'], $data['mobile'])); } /** * 同步 * @return Response */ public function sync(){ $data = $this->request->params([ ['code', ''], ]); $wechat_auth_service = new WechatAuthService(); return success($wechat_auth_service->sync($data['code'])); } /** * 获取jssdk config * @return Response */ public function jssdkConfig(){ $data = $this->request->params([ ['url', ''], ]); $wechat_auth_service = new WechatAuthService(); return success($wechat_auth_service->jssdkConfig($data['url'])); } /** * 扫码登录 * @return Response */ public function scanLogin(){ $wechat_auth_service = new WechatAuthService(); return success($wechat_auth_service->scanLogin()); } }