buildAuthUrlFromBase($this->baseUrl.'/oauth2.0/authorize'); } protected function getTokenUrl(): string { return $this->baseUrl.'/oauth2.0/token'; } /** * @param string $code * * @return array */ protected function getTokenFields(string $code): array { return parent::getTokenFields($code) + [ 'grant_type' => 'authorization_code', ]; } /** * @param string $code * * @return array * @throws \Overtrue\Socialite\Exceptions\AuthorizeFailedException * @throws \GuzzleHttp\Exception\GuzzleException */ public function tokenFromCode(string $code): array { $response = $this->getHttpClient()->get($this->getTokenUrl(), [ 'query' => $this->getTokenFields($code), ]); \parse_str($response->getBody()->getContents(), $token); return $this->normalizeAccessTokenResponse($token); } public function withUnionId(): self { $this->withUnionId = true; return $this; } /** * @param string $token * * @return array * @throws \GuzzleHttp\Exception\GuzzleException */ protected function getUserByToken(string $token): array { $url = $this->baseUrl.'/oauth2.0/me?fmt=json&access_token='.$token; $this->withUnionId && $url .= '&unionid=1'; $response = $this->getHttpClient()->get($url); $me = \json_decode($response->getBody()->getContents(), true); $queries = [ 'access_token' => $token, 'fmt' => 'json', 'openid' => $me['openid'], 'oauth_consumer_key' => $this->getClientId(), ]; $response = $this->getHttpClient()->get($this->baseUrl.'/user/get_user_info?'.http_build_query($queries)); return (\json_decode($response->getBody()->getContents(), true) ?? []) + [ 'unionid' => $me['unionid'] ?? null, 'openid' => $me['openid'] ?? null, ]; } /** * @param array $user * * @return \Overtrue\Socialite\User */ protected function mapUserToObject(array $user): User { return new User([ 'id' => $user['openid'] ?? null, 'name' => $user['nickname'] ?? null, 'nickname' => $user['nickname'] ?? null, 'email' => $user['email'] ?? null, 'avatar' => $user['figureurl_qq_2'] ?? null, ]); } }