You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ORCID will then return the researcher’s verified ORCID iD and an access token, along with the refresh token, scope(s), name on the ORCID record, and token expiry. A example response:
Store the ORCID iD and access token in your system in a safe and secure manner. Both items will be required to perform any action to their ORCID record: read, write, update. If you are only requesting /authorize access, access tokens can be stored to indicate that the iD has been authenticated, as well as to read public access data.
Use the ORCID iD and access token to read the user’s record and populate their profile in your system: Save users time by allowing them to quickly and easily transfer data from their ORCID records to your system. All you need to is to make a quick call to their record:
Method: GET
Content-type: application/vnd.orcid+xml or application/vnd.orcid+json
Authorization type: Bearer
Access token: [Stored access token]
End point: https://api.sandbox.orcid.org/v2.0/[Stored ORCID iD]/record
Example record XML: GitHub
The text was updated successfully, but these errors were encountered:
When we store a user's access token in the session, we could use it later on.
/authenticate
because according to to the scope documentationFrom the ORCID documentation: https://members.orcid.org/api/integrate/orcid-sign-in
The text was updated successfully, but these errors were encountered: