qeios-lab/orcid-php
Composer 安装命令:
composer require qeios-lab/orcid-php
包简介
Library for ORCID web services
README 文档
README
PHP Library for ORCID
This library was started to support the ORCID OAuth2 authentication workflow. It also supports basic profile access, but is a work in progress. More features are to come as needed by the developer or requested/contributed by other interested parties.
Usage
OAuth2
3-Legged Oauth Authorization
To go through the 3-legged oauth process, you must start by redirecting the user to the ORCID authorization page.
// Set up the config for the ORCID API instance $oauth = new Oauth; $oauth->setClientId($clientId) ->setScope('/authenticate') ->setState($state) ->showLogin() ->setRedirectUri($redirectUri); // Create and follow the authorization URL header("Location: " . $oauth->getAuthorizationUrl());
Most of the options described in the ORCID documentation (http://members.orcid.org/api/customize-oauth-login-screen) concerning customizing the user authorization experience are encapsulated in the OAuth class.
Once the user authorizes your app, they will be redirected back to your redirect URI. From there, you can exchange the authorization code for an access token.
if (!isset($_GET['code'])) { // User didn't authorize our app throw new Exception('Authorization failed'); } $oauth = new Oauth; $oauth->setClientId($clientId) ->setClientSecret($clientSecret) ->setRedirectUri($redirectUri); // Authenticate the user $oauth->authenticate($_GET['code']); // Check for successful authentication if ($oauth->isAuthenticated()) { $orcid = new Profile($oauth); // Get ORCID iD $id = $orcid->id(); }
This example uses the ORCID public API. A members API is also available, but the OAuth process is essentially the same.
Client Credential Authorization
To be implemented...
Profile
As alluded to in the samples above, once successfully authenticated via OAuth, you can make subsequent requests to the other public/member APIs. For example:
$orcid = new Profile($oauth); // Get ORCID profile details $id = $orcid->id(); $email = $orcid->email(); $name = $orcid->fullName();
The profile class currently only supports a limited number of helper methods for directly accessing elements from the profile data. This will be expanded upon as needed. The raw JSON data from the profile output is available by calling the raw() method.
Note that some fields (like email) may return null if the user has not made that field available.
Environment and API types
ORCID supports two general API endpoints. The first is their public API, and a second is for registered ORCID members (membership in this scenario does not simply mean that you have an ORCID account). The public API is used by default and currently supports all functionality provided by the library. You can, however, switch to the member API by calling:
$oauth = new Oauth; $oauth->useMembersApi();
If you explicitly want to use the public API, you can do so by calling:
$oauth = new Oauth; $oauth->usePublicApi();
ORCID also supports a sandbox environment designed for testing. To use this environment, rather than the production environment (which is default), you can call the following command:
$oauth = new Oauth; $oauth->useSandboxEnvironment();
The counterpart to this function, though not explicitly necessary, is:
$oauth = new Oauth; $oauth->useProductionEnvironment();
qeios-lab/orcid-php 适用场景与选型建议
qeios-lab/orcid-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16.76k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 05 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「oauth」 「orcid」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 qeios-lab/orcid-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 qeios-lab/orcid-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 qeios-lab/orcid-php 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
WeChat OAuth SDK
Ory-Hydra OAuth 2.0 Client Provider for The PHP League OAuth2-Client
Library for ORCID web services
ORCID OAuth2 Provider for Laravel Socialite
A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.
ORCID OAuth 2.0 Client Provider for The PHP League OAuth2-Client
统计信息
- 总下载量: 16.76k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-05-07