Аутентификация кода Google при входе в систему Ошибка PHP - PullRequest
0 голосов
/ 05 декабря 2018

Я пытаюсь создать логин Google в своем приложении php, я следовал всем инструкциям Google, а также образцам кодов.Работает нормально до страницы входа.Проблема возникает, когда я пытаюсь аутентифицировать код, полученный при входе в систему, чтобы он мог вернуть токен доступа.

Это мой файл oauth2callback.php.

<?php
require_once __DIR__.'/vendor/autoload.php';

session_start();

$client = new Google_Client();
$client->setAuthConfig('client_secret.json');
$client->addScope('https://www.googleapis.com/auth/userinfo.email');
$client->setRedirectUri('https://' . $_SERVER['HTTP_HOST'] . '/includes/gmail/oauth2callback.php');

if (!isset($_GET['code'])) {
  $auth_url = $client->createAuthUrl();

  header('Location: ' . filter_var($auth_url, FILTER_SANITIZE_URL));
} else {

 $client->authenticate($_GET['code']); //this is where the problem happens

  $_SESSION['access_token'] = $client->getAccessToken();
  $redirect_uri = 'https://' . $_SERVER['HTTP_HOST'] . '/includes/gmail/';
  header('Location: ' . filter_var($redirect_uri, FILTER_SANITIZE_URL));
}

I 'мы уже проверили, является ли "$ _GET ['code']" правильным кодом, и это так.Я также отследил, где находится корень проблемы, он привел меня к клиентскому классу Google (Client.php).

public function fetchAccessTokenWithAuthCode($code)
  {
    if (strlen($code) == 0) {
      throw new InvalidArgumentException("Invalid code");
    }

    $auth = $this->getOAuth2Service();
    $auth->setCode($code);
    $auth->setRedirectUri($this->getRedirectUri());

    $httpHandler = HttpHandlerFactory::build($this->getHttpClient());

    $creds = $auth->fetchAuthToken($httpHandler);//here is where it breaks

    if ($creds && isset($creds['access_token'])) {
      $creds['created'] = time();
      $this->setAccessToken($creds);
    }

    return $creds;
  }

Так что я снова последовал за функцией глючения, которая привела меня к следующему OAuth2.phpfunction:

public function fetchAuthToken(callable $httpHandler = null)
    {
        if (is_null($httpHandler)) {
            $httpHandler = HttpHandlerFactory::build();
        }
        $pre_credentials = $this->generateCredentialsRequest();

        $response = $httpHandler($pre_credentials);//this is the root of the problem
        $credentials = $this->parseTokenResponse($response);
        $this->updateToken($credentials);

        return $credentials;
    }

Здесь мне больше некуда было идти, я понятия не имею, почему у httpHandler проблемы с аутентификацией, и я не могу продолжать вход в систему.Это единственный метод в httpHandler:

public static function build(ClientInterface $client = null)
    {
        $version = ClientInterface::VERSION;
        $client = $client ?: new Client();

        switch ($version[0]) {
            case '5':
                return new Guzzle5HttpHandler($client);
            case '6':
                return new Guzzle6HttpHandler($client);
            default:
                throw new \Exception('Version not supported');
        }
    }
...