league/oauth2-google

PHP League OAuth2-Client 的 Google OAuth 2.0 客户端提供程序

4.0.1 2023-03-17 15:20 UTC

This package is auto-updated.

Last update: 2024-09-14 15:00:45 UTC


README

Build Status Code Coverage License Latest Stable Version

此软件包为 PHP League 的 OAuth 2.0 客户端 提供Google OAuth 2.0 支持。

此软件包符合 PSR-1PSR-2PSR-4 标准。如果发现不符合标准,请通过拉取请求发送补丁。

需求

以下版本的 PHP 都得到支持。

  • PHP 7.3
  • PHP 7.4
  • PHP 8.0
  • PHP 8.1
  • PHP 8.2
  • PHP 8.3

此软件包使用 OpenID Connect 验证 Google 账户的用户。

要使用此软件包,需要拥有一个 Google 客户端 ID 和客户端密钥。在文档中,这些分别被称为 {google-client-id}{google-client-secret}

请遵循 Google 说明 创建所需的凭证。

安装

要安装,请使用 composer

composer require league/oauth2-google

使用

授权码流

require __DIR__ . '/vendor/autoload.php';

use League\OAuth2\Client\Provider\Google;

session_start(); // Remove if session.auto_start=1 in php.ini

$provider = new Google([
    'clientId'     => '{google-client-id}',
    'clientSecret' => '{google-client-secret}',
    'redirectUri'  => 'https://example.com/callback-url',
    'hostedDomain' => 'example.com', // optional; used to restrict access to users on your G Suite/Google Apps for Business accounts
]);

if (!empty($_GET['error'])) {

    // Got an error, probably user denied access
    exit('Got error: ' . htmlspecialchars($_GET['error'], ENT_QUOTES, 'UTF-8'));

} elseif (empty($_GET['code'])) {

    // If we don't have an authorization code then get one
    $authUrl = $provider->getAuthorizationUrl();
    $_SESSION['oauth2state'] = $provider->getState();
    header('Location: ' . $authUrl);
    exit;

} elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2state'])) {

    // State is invalid, possible CSRF attack in progress
    unset($_SESSION['oauth2state']);
    exit('Invalid state');

} else {

    // Try to get an access token (using the authorization code grant)
    $token = $provider->getAccessToken('authorization_code', [
        'code' => $_GET['code']
    ]);

    // Optional: Now you have a token you can look up a users profile data
    try {

        // We got an access token, let's now get the owner details
        $ownerDetails = $provider->getResourceOwner($token);

        // Use these details to create a new profile
        printf('Hello %s!', $ownerDetails->getFirstName());

    } catch (Exception $e) {

        // Failed to get user details
        exit('Something went wrong: ' . $e->getMessage());

    }

    // Use this to interact with an API on the users behalf
    echo $token->getToken();

    // Use this to get a new access token if the old one expires
    echo $token->getRefreshToken();

    // Unix timestamp at which the access token expires
    echo $token->getExpires();
}

可用选项

Google 提供程序具有以下 选项

  • accessType 用于在线或离线访问
  • hostedDomain 用于验证 G Suite 用户
  • prompt 用于修改用户将看到的提示
  • scopes 用于请求访问附加用户信息

访问令牌 JWT

Google 为所有访问令牌提供了一个 JSON Web Token (JWT)。此令牌 包含有关已验证用户的基本信息。可以从访问令牌的 id_token 值访问 JWT。

/** @var League\OAuth2\Client\Token\AccessToken $token */
$values = $token->getValues();

/** @var string */
$jwt = $values['id_token'];

解析 JWT 需要一个 JWT 解析器。有关说明,请参阅解析器文档。

刷新令牌

刷新令牌仅提供给请求离线访问的应用程序。您可以通过在提供程序中设置 accessType 选项来指定离线访问。

use League\OAuth2\Client\Provider\Google;

$provider = new Google([
    'clientId'     => '{google-client-id}',
    'clientSecret' => '{google-client-secret}',
    'redirectUri'  => 'https://example.com/callback-url',
    'accessType'   => 'offline',
]);

请注意,刷新令牌仅在第一次请求后返回,之后将变为 null。您应该安全地存储刷新令牌。

$token = $provider->getAccessToken('authorization_code', [
    'code' => $code
]);

// persist the token in a database
$refreshToken = $token->getRefreshToken();

如果您需要获取新的刷新令牌,可以通过强制同意提示来请求一个。

$authUrl = $provider->getAuthorizationUrl(['prompt' => 'consent', 'access_type' => 'offline']);

现在您有了使用刷新令牌刷新访问令牌所需的一切。

use League\OAuth2\Client\Provider\Google;
use League\OAuth2\Client\Grant\RefreshToken;

$provider = new Google([
    'clientId'     => '{google-client-id}',
    'clientSecret' => '{google-client-secret}',
    'redirectUri'  => 'https://example.com/callback-url',
]);

$grant = new RefreshToken();
$token = $provider->getAccessToken($grant, ['refresh_token' => $refreshToken]);

作用域

可以通过在生成授权 URL 时使用 scope 参数来设置额外的 作用域

$authorizationUrl = $provider->getAuthorizationUrl([
    'scope' => [
        'scope-url-here'
    ],
]);

测试

可以使用以下命令运行测试

composer test

可以使用以下命令运行风格检查

composer check

贡献

有关详细信息,请参阅 CONTRIBUTING

鸣谢

许可

MIT许可证(MIT)。请参阅许可证文件以获取更多信息。