eureka2 / oauth-client
OAuth 客户端库
1.0.2
2019-09-20 16:56 UTC
Requires
- php: ^7.1.3
- symfony/http-client: ^4.3
This package is auto-updated.
Last update: 2024-09-21 05:20:50 UTC
README
此库是基于 OAuth 的多协议客户端。
支持的协议包括:OAuth 1.0,OAuth 1.0a,OAuth 2.0 和 OpenID 1.0
此库可以配置为与任何基于这些协议提供服务和资源的平台协同工作。
一些提供者的配置已集成到库中(内置提供者),这允许您用最少的参数使用他们的服务。
对于未集成的提供者,一组选项允许您控制对服务和资源的访问。此数组包含端点列表、非标准字段的映射、与提供者注册的标识符以及访问请求的组成方式(策略)。
要求
- PHP >=7.1.3
- symfony/http-client >= 4.3
安装
从您应用程序的根目录运行: composer require eureka2/oauth-client
用法
对内置 OAuth 提供者的低级请求
use eureka2\OAuth\Client\OAuthClient; try { $client = OAuthClient::create('Google'); $client->setClientId('<YOUR CLIENT ID>'); $client->setClientSecret('<YOUR CLIENT SECRET>'); $client->setRedirectUri('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME']); $user = (object) []; if ($client->initialize([ 'strategy' => [ 'offline_access' => true ] ])) { if ($client->authenticate()) { if (!empty($client->getAccessToken())) { $user = $client->getResourceOwner(); } } $client->finalize(); } if ($client->shouldExit()) { exit; } .... // Do something with $user } catch (\Exception $e) { // Do something with $e }
对内置 OAuth 提供者的高级请求
use eureka2\OAuth\Client\OAuthClient; try { $client = OAuthClient::create('Google'); $options = [ // See the full list of options below 'provider' => [ 'registration' => [ 'keys' => [ 'client_id' => '<YOUR CLIENT ID>', 'client_secret' => '<YOUR CLIENT SECRET>', 'redirect_uri' => 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'] ] ] ], 'strategy' => [ 'offline_access' => true ] ]; $user = $client->fetchResourceOwner($options); .... // Do something with $user } catch (\Exception $e) { // Do something with $e }
选项
$options = [ 'provider' => [ 'protocol' => [ 'name' => 'string', 'version' => 'string' ], 'endpoints' => [ 'discovery_endpoint' => 'string', 'authorization_endpoint' => 'string', 'token_endpoint' => 'string', 'registration_endpoint' => 'string', 'introspection_endpoint' => 'string', 'revocation_endpoint' => 'string', 'request_token_endpoint' => 'string', 'userinfo_endpoint' => 'string', 'end_session_endpoint' => 'string', 'pin_dialog_url' => 'string', 'jwks_uri' => 'string' ], 'mapping' => [ // see https://openid.net/specs/openid-connect-core-1_0.html#StandardClaims and https://openid.net/specs/openid-connect-core-1_0.html#AddressClaim 'user_id_field' => 'string', 'name_field' => 'string', 'given_name_field' => 'string', 'family_name_field' => 'string', 'middle_name_field' => 'string', 'nickname_field' => 'string', 'preferred_username_field' => 'string', 'profile_field' => 'string', 'picture_field' => 'string', 'website_field' => 'string' 'email_field' => 'string', 'email_verified_field' => 'string', 'gender_field' => 'string', 'birthdate_field' => 'string', 'zoneinfo_field' => 'string', 'locale_field' => 'string', 'phone_number_field' => 'string', 'phone_number_verified_field' => 'string', 'updated_at_field' => 'string', 'formatted_field' => 'string', 'street_address_field' => 'string', 'locality_field' => 'string', 'region_field' => 'string', 'postal_code_field' => 'string', 'country_field' => 'string' ], 'registration' => [ 'keys' => [ 'client_id' => 'string', 'client_secret' => 'string', 'redirect_uri' => 'string', 'realm' => 'string', 'api_key' => 'string', 'pin' => 'string' ], 'credentials' => [ 'username' => 'string', 'password' => 'string' ] ] ], 'strategy' => [ 'reauthentication_parameter' => 'string', 'offline_access' => 'boolean', 'offline_access_parameter' => 'string', 'append_state_to_redirect_uri' => 'string', 'authorization_in_header' => 'boolean', 'parameters_in_url' => 'boolean', 'token_request_method' => 'string', 'signature_method' => 'string', 'signature_certificate_file' => 'string', 'access_token_authentication' => 'string', 'access_token_parameter' => 'string', 'default_access_token_type' => 'string', 'store_access_token_response' => 'boolean', 'refresh_token_authentication' => 'string', 'grant_type' => 'string', 'get_token_with_api_key' => 'boolean', 'access_token_content_type' => 'string', 'access_token_language' => 'string', 'scope' => 'string' ], 'storage' => [ 'type' => 'string', 'key' => 'string', 'dsn' => 'string' ] ];
静态方法
方法
API 文档
版权和许可
© 2019 Eureka2 - Jacques Archimède。代码在MIT 许可证下发布。