therezor / oauth2-nbu-bankid
乌克兰国家银行OAuth 2.0客户端提供者,用于PHP League OAuth2-Client
dev-main
2021-03-01 14:46 UTC
Requires
- jakeasmith/http_build_url: ^1.0
- league/oauth2-client: ^2.0
Requires (Dev)
- mockery/mockery: ~1.3.1
- phpunit/phpunit: >=8.0
- squizlabs/php_codesniffer: ^3.0
This package is auto-updated.
Last update: 2024-08-29 05:31:22 UTC
README
本包为PHP League的OAuth 2.0客户端提供了乌克兰国家银行的OAuth 2.0支持。
安装
-
下载并安装eusphpe php扩展
下载链接: http://iit.com.ua/download/EUSPHPE-20200910.zip
有关安装说明,请参阅安装包内的文档(Documentation/EUSignPHPDescription.doc) -
将证书添加到第1步中确定的文件夹
https://iit.com.ua/download/productfiles/CACertificates.p7b
https://iit.com.ua/download/productfiles/CACertificates.Test.p7b -
使用composer将php库添加到您的项目中
composer require therezor/oauth2-nbu-bankid
祝您玩得开心....
用法
用法与The League的OAuth客户端相同,使用\TheRezor\OAuth2\Client\Provider\BankID
作为提供者。
授权码流
$provider = new TheRezor\OAuth2\Client\Provider\BankID([ 'clientId' => '{your-client-id}', 'clientSecret' => '{your-client-secret}', 'redirectUri' => 'https://example.com/callback-url', 'host' => 'https://id.bank.gov.ua', // Optional, defaults to https://id.bank.gov.ua, for testing use https://testid.bank.gov.ua 'cert' => file_get_contents('your_path/cert.cer'), 'key' => file_get_contents('your_path/Key-6.dat'), 'password' => '{your-private-key-password}', ]); 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 echo("Hello {$user->getFirstName()} {$user->getLastName()}"); } 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(); }
测试
目前不可用。待办:添加测试。
许可
MIT许可(MIT)。请参阅许可文件获取更多信息。