$this->AppKey, 'access_token' => $this->Token['access_token'], 'openid' => $this->openid(), 'format' => 'json' ); $data = $this->http($this->url($api), $this->param($params, $param), $method); return json_decode($data, true); } /** * 解析access_token方法请求后的返回值 * @param string $result 获取access_token的方法的返回值 */ protected function parseToken($result, $extend) { parse_str($result, $data); if ($data['access_token'] && $data['expires_in']) { $this->Token = $data; $data['openid'] = $this->openid(); return $data; } else throw new \think\Exception("获取腾讯QQ ACCESS_TOKEN 出错:{$result}"); } /** * 获取当前授权应用的openid * @return string */ public function openid() { $data = $this->Token; if (isset($data['openid'])) return $data['openid']; elseif ($data['access_token']) { $data = $this->http($this->url('oauth2.0/me'), array('access_token' => $data['access_token'])); $data = json_decode(trim(substr($data, 9), " );\n"), true); if (isset($data['openid'])) return $data['openid']; else throw new \think\Exception("获取用户openid出错:{$data['error_description']}"); } else { throw new \think\Exception('没有获取到openid!'); } } }