osufpp/oauth2-ifsta

PHP League OAuth2-Client 的 IFSTA OAuth 2.0 客户端提供者

0.1.2 2016-12-28 15:49 UTC

This package is not auto-updated.

Last update: 2024-09-29 01:58:24 UTC


README

Join the chat Build Status Code Coverage Code Quality License Latest Stable Version

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

本软件包符合 PSR-1PSR-2PSR-4 规范。如果您发现任何不符合规范的地方,请通过 pull request 发送补丁。

要求

以下版本的 PHP 支持。

  • PHP 5.5
  • PHP 5.6
  • PHP 7.0
  • HHVM

安装

安装时,请使用 composer

composer require osufpp/oauth2-ifsta

用法

授权码流程

$provider = new Osufpp\OAuth2\Client\Provider\Ifsta([
    'clientId'     => '{ifsta-client-id}',
    'clientSecret' => '{ifsta-client-secret}',
    'redirectUri'  => 'https://example.com/callback-url',
    'hostedDomain' => 'https://example.com',
]);

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();

    // Number of seconds until the access token will expire, and need refreshing
    echo $token->getExpires();
}

测试

$ ./vendor/bin/phpunit

贡献

有关详细信息,请参阅 CONTRIBUTING

致谢

许可证

MIT 许可证 (MIT)。有关更多信息,请参阅 许可证文件