b3-it/oauth2-adfs

Microsoft Active Directory Federation Service (ADFS) OAuth 2.0 客户端提供程序,用于 PHP League 的 OAuth 2.0 客户端

1.0.1.0 2024-04-30 11:34 UTC

This package is auto-updated.

Last update: 2024-08-30 12:28:43 UTC


README

Latest Version Build Status Coverage Status Total Downloads Software License

此包为 PHP League 的 OAuth 2.0 客户端 提供了 Microsoft ADFS OAuth 2.0 支持。

安装

要安装,请使用 composer

composer require b3-it/oauth2-adfs

用法

用法与 The League 的 OAuth 客户端相同,使用 \B3it\OAuth2\Client\Provider\Adfs 作为提供程序。

授权码流程

$provider = new B3it\OAuth2\Client\Provider\Adfs([
    // Required
    'clientId'                  => '{microsoft-client-id}',
    'clientSecret'              => '{microsoft-client-secret}',
    'authServerUrl'             => 'https://my.ms-server.de/adfs',
    // Optional
    'redirectUri'               => 'https://example.com/callback-url',
    'resource'                  => 'https://example.com'
    
]);

if (!isset($_GET['code'])) {

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

// Check given state against previously stored one to mitigate CSRF attack
} elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2state'])) {

    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 user's details
        $user = $provider->getResourceOwner($token);

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

    } catch (Exception $e) {

        // Failed to get user details
        exit('Oh dear...');
    }

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

管理作用域和状态

当创建您的 Microsoft ADFS 授权 URL 时,您可以指定应用程序可能授权的状态和作用域。

$options = [
    'scope' => ['allatclaims', 'openid'] // array or string
];

$authorizationUrl = $provider->getAuthorizationUrl($options);

如果两者都没有定义,则提供程序将使用内部默认值。

在编写此文档时,以下作用域可用。

作用域
  • logon_cert
  • aza
  • allatclaims
  • email
  • profile
  • winhello_cert
  • openid
  • vpn_cert
  • user_impersonation

致谢

许可

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