Download the PHP package hubzero/orcid-php without Composer
On this page you can find all versions of the php package hubzero/orcid-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package orcid-php
orcid-php
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.
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.
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:
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:
If you explicitly want to use the public API, you can do so by calling:
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:
The counterpart to this function, though not explicitly necessary, is:
All versions of orcid-php with dependencies
ext-curl Version *