mode = $this->request->get('mode', 1); $this->source = $this->request->server('http_referer', $this->request->url(true)); $user = WechatService::instance()->getWebOauthInfo($this->source, $this->mode, false); if (empty($user['openid'])) { $content = 'alert("Wechat webOauth failed.")'; } else { $this->openid = $user['openid']; $this->config = json_encode(WechatService::instance()->getWebJssdkSign($this->source)); $this->fansinfo = json_encode(empty($user['fansinfo']) ? [] : $user['fansinfo'], JSON_UNESCAPED_UNICODE); // 生成接口授权令牌 $this->token = uniqid('oauth') . rand(10000, 99999); $this->app->cache->set($this->openid, $this->token, 3600); $content = $this->_buildContent(); } return Response::create($content)->contentType('application/x-javascript'); } /** * 生成授权内容 * @return string */ private function _buildContent() { return <<fansinfo}; wx.config({$this->config}); wx.ready(function(){ wx.hideOptionMenu(); wx.hideAllNonBaseMenuItem(); }); } EOF; } }