SlideShare a Scribd company logo
1 of 23
ORCID: Technical Introduction 
California Digital Libraries | Sept 19, 2014 
Liz Krznarich, ORCID Support 
http://orcid.org/0000-0001-6622-4910 
support@orcid.org 
Contact Info: p. +1-301-922-9062 a. 10411 Motor City Drive, Suite 750, Bethesda, MD 20817o UrScAid.org
Today’s Topics 
• ORCID Registry – User Perspective 
• API Features 
• XML Schema 
• Building an Integraton – Basic Steps 
• Support/Communication Resources 
19 September 2014 orcid.org 2
Getting Started 
First Name 
Last Name 
Email 
Password 
Privacy & 
Communications 
Preferences 
Register 
Via the ORCID Website 
https://orcid.org/register 
Or as part of an integration 
from another site 
19 September 2014 orcid.org 3
Getting Started 
Welcome to the 
ORCID Registry! 
Image credit: RaHuL Rodriguez, ccBY-SA 2.0, Oct 5, 2012 
http://www.flickr.com/photos/92963434@N03/9162677329 
• Verify your email address 
• Here’s your ORCID iD: 
19 September 2014 orcid.org 4
The ORCID Record 
Contains: 
 Biographical Data 
 Education Data 
 Employment Data 
 Works Data 
 Funding Data 
19 September 2014 orcid.org 5
The ORCID Record 
Biographical 
Data 
Include 
Multiple  
Add a Names 
Description  
19 September 2014 orcid.org 6
The ORCID Record 
Education Data 
Employment Data 
Organization 
list from  
Ringgold 
(an ISNI Registrar) 
19 September 2014 orcid.org 7
The ORCID Record 
Funding Data 
Funding agency 
 list consistent 
with FundRef 
Search & link 
Wizards  
19 September 2014 orcid.org 8
The ORCID Record 
Works Data 
Search & Link Wizards: 
• ANDS Registry 
• CrossRef Metadata Search 
• DataCite Metadata Store 
• Europe PubMed Central 
• ResearcherID 
• Scopus 
• ISNI number & ISBNs 
Classifications & metadata 
fields consistent w/CASRAI 
Translated titles & 
language support 
Structured citations 
in BibTeX 
19 September 2014 orcid.org 9
User privacy 
● Information in an ORCID Record has a privacy 
setting, which can be set by the account owner. 
Accessible by : 
Anyone Account Owner, Trusted Account Owner 
Organization(s) 
● Account information (settings, permissions) is 
accessible by the account owner 
19 September 2014 orcid.org 10
The ORCID API 
• Authenticate- Get a user’s 
authenticated ORCID iD 
• Read- Read public and read-limited 
items 
• Add- Post new items to the record 
• Update- Update or delete items you 
previously added 
19 September 2014 orcid.org 11
The ORCID API 
User: Follow a link to connect your system to 
their ORCID record (on the ORCID site, your website, or 
in an email message) 
System: Send the use to the authorize URL 
https://orcid.org/oauth/authorize? 
client_id=0000-0003-2996-8827& 
response_type=code& 
scope=/orcid-profile/read-limited& 
redirect_uri=https://yoursite.org 
19 September 2014 orcid.org 12
The ORCID API 
User: authorize the connection 
System: Receive an authorization code & the 
user’s ORCID iD 
19 September 2014 orcid.org 13
The ORCID API 
User: no action 
System: Exchange the authorization code for 
an access token 
curl -i -L -H 'Accept: application/json' --data 
'client_id=0000-0002-9189-9909&client_secret=719b5c31-5681- 
4dce-a317- 
ff1bc1e94277&grant_type=authorization_code&code=GU0yrC&redirect 
_uri=https://developers.google.com/oauthplayground' 
'https://api.qa.orcid.org/oauth/token' -k 
HTTP/1.1 200 OK 
{"access_token":"0a3ac65f-f8a7-4257-b605-aff0ab37d464", 
"token_type":"bearer", 
"refresh_token":"16d75d2d-bb75-4087-8a01-685e5f03faf8", 
"expires_in":631138518, 
"scope":"/orcid-profile/read-limited", 
"orcid":"0000-0003-4153-0078”} 
19 September 2014 orcid.org 14
The ORCID API 
User: no action 
System: Use the access token to read the 
user’s record 
HTTP/1.1 200 OK 
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> 
<orcid-message xmlns="http://www.orcid.org/ns/orcid"> 
<message-version>1.2_rc3</message-version> 
<orcid-profile type="user"> 
<orcid-identifier> 
<uri>http://qa.orcid.org/0000-0003-4153-0078</uri> 
<path>0000-0003-4153-0078</path> 
<host>qa.orcid.org</host> 
</orcid-identifier> 
… 
19 September 2014 orcid.org 15
The ORCID API 
User: Select items to add to their ORCID 
record 
System: Use the access token to post 
information 
19 September 2014 orcid.org 16
The ORCID API 
The ORCID record is updated 
19 September 2014 orcid.org 17
Most common workflows 
Get the researcher’s ORCID iD 
Read data from a user’s ORCID Record 
Add works, funding, affiliations, or 
biographical information to an ORCID 
Record 
Enable user to display your system’s 
identifier & link on their ORCID Record 
Create an ORCID iD for your employees 
19 September 2014 orcid.org 18
The ORCID API 
Creating ORCID Records 
Batch Create 
• You create a record for the 
researchers via the API 
• User is sent an email asking 
them to claim the record and 
take control of it 
• Must have researchers’ consent 
Create on Demand 
• Webpage/email with link for 
researchers to sign up/sign in 
• Researchers grant you access 
to add information to their 
record when they register 
19 September 2014 orcid.org 19
The ORCID API 
ORCID Messages XML has 4 parts: 
• <orcid-identifier> & <orcid-history> system 
generated info about the record 
• <orcid-bio> personal information about the 
researcher 
• <orcid-activities> information about the 
researcher’s activities including works, funding, 
employment and education 
Currently on version 1.1, but release 
candidate 1.2_rc4 is available 
https://github.com/ORCID/ORCID-Source/blob/master/orcid-model/ 
src/main/resources/README.md 
19 September 2014 orcid.org 20
Resources 
Technical steps to build an integration 
• Get credentials for the ORCID Sandbox 
sandbox.orcid.org 
• Setup an integration on the sandbox 
• Work with ORCID staff to test your sandbox 
integration 
• Launch your integration on the ORCID Registry 
19 September 2014 orcid.org 21
Non technical steps 
Resources 
• Educate your researchers about ORCID 
• Publish internal articles about ORCID 
• Use the ORCID logo on your site 
• Share Promotional materials 
• Host workshops 
• Education your administration about ORCID 
• Create help documentation for your integration 
• Publicize your completed integration 
19 September 2014 orcid.org 22
• Start with the API Guide 
(http://support.orcid.org/knowledgebase/articles/180285) 
• ORCID Knowledge Base 
Resources 
• High level guides (http://support.orcid.org/knowledgebase/topics/32828) 
• Detailed tutorials (http://support.orcid.org/knowledgebase/topics/32831) 
• ORCID API Users Group 
(https://groups.google.com/forum/#!forum/orcid-api-users) 
• Check out other integrations 
(https://orcid.org/organizations/integrators/current) 
• ORCID Support (http://support.orcid.org or support@orcid.org) 
19 September 2014 orcid.org 23

More Related Content

What's hot

ORCID auto-update in the publishing process: From submission to your systems ...
ORCID auto-update in the publishing process: From submission to your systems ...ORCID auto-update in the publishing process: From submission to your systems ...
ORCID auto-update in the publishing process: From submission to your systems ...ORCID, Inc
 
ORCID cross-sector application and use cases (L. Haak)
ORCID cross-sector application and use cases (L. Haak)ORCID cross-sector application and use cases (L. Haak)
ORCID cross-sector application and use cases (L. Haak)ORCID, Inc
 
Core Principles of ORCID: Researcher control, community governance, openness,...
Core Principles of ORCID: Researcher control, community governance, openness,...Core Principles of ORCID: Researcher control, community governance, openness,...
Core Principles of ORCID: Researcher control, community governance, openness,...ORCID, Inc
 
What's New at ORCID?
What's New at ORCID?What's New at ORCID?
What's New at ORCID?ORCID, Inc
 
What is the ORCID API and what you can do with it? (R. Peters)
What is the ORCID API and what you can do with it? (R. Peters)What is the ORCID API and what you can do with it? (R. Peters)
What is the ORCID API and what you can do with it? (R. Peters)ORCID, Inc
 
ORCID API in Action (A. Wrigley)
ORCID API in Action (A. Wrigley)ORCID API in Action (A. Wrigley)
ORCID API in Action (A. Wrigley)ORCID, Inc
 
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)ORCID, Inc
 
ORCID overview: why your lifelong identifier is important in the digital age ...
ORCID overview: why your lifelong identifier is important in the digital age ...ORCID overview: why your lifelong identifier is important in the digital age ...
ORCID overview: why your lifelong identifier is important in the digital age ...ORCID, Inc
 
Introduction and ORCID overview (N. Miyairi)
Introduction and ORCID overview (N. Miyairi)Introduction and ORCID overview (N. Miyairi)
Introduction and ORCID overview (N. Miyairi)ORCID, Inc
 
ORCID in platform research lifecycle products (M. Buys)
ORCID in platform research lifecycle products (M. Buys)ORCID in platform research lifecycle products (M. Buys)
ORCID in platform research lifecycle products (M. Buys)ORCID, Inc
 
ORCID: Today and the Future (L. Haak)
ORCID: Today and the Future (L. Haak)ORCID: Today and the Future (L. Haak)
ORCID: Today and the Future (L. Haak)ORCID, Inc
 
ORCID Member Site Integration: Using the API
ORCID Member Site Integration: Using the APIORCID Member Site Integration: Using the API
ORCID Member Site Integration: Using the APIORCID, Inc
 
Bryant outreach report 05222013
Bryant outreach report 05222013Bryant outreach report 05222013
Bryant outreach report 05222013ORCID, Inc
 
What in the World is ORCID? (Haak)
What in the World is ORCID? (Haak)What in the World is ORCID? (Haak)
What in the World is ORCID? (Haak)ORCID, Inc
 
ORCID Consortium in Australia (N. Simmons)
ORCID Consortium in Australia (N. Simmons)ORCID Consortium in Australia (N. Simmons)
ORCID Consortium in Australia (N. Simmons)ORCID, Inc
 
ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...
ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...
ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...ORCID, Inc
 
ORCID for researchers: What, why, how?
ORCID for researchers: What, why, how?ORCID for researchers: What, why, how?
ORCID for researchers: What, why, how?ORCID, Inc
 
Getting Connected with the ORCID API (A. Wrigley)
Getting Connected with the ORCID API (A. Wrigley)Getting Connected with the ORCID API (A. Wrigley)
Getting Connected with the ORCID API (A. Wrigley)ORCID, Inc
 
Practical Guide for ORCID Users
Practical Guide for ORCID Users Practical Guide for ORCID Users
Practical Guide for ORCID Users Naz Torabi
 

What's hot (20)

ORCID auto-update in the publishing process: From submission to your systems ...
ORCID auto-update in the publishing process: From submission to your systems ...ORCID auto-update in the publishing process: From submission to your systems ...
ORCID auto-update in the publishing process: From submission to your systems ...
 
ORCID cross-sector application and use cases (L. Haak)
ORCID cross-sector application and use cases (L. Haak)ORCID cross-sector application and use cases (L. Haak)
ORCID cross-sector application and use cases (L. Haak)
 
Core Principles of ORCID: Researcher control, community governance, openness,...
Core Principles of ORCID: Researcher control, community governance, openness,...Core Principles of ORCID: Researcher control, community governance, openness,...
Core Principles of ORCID: Researcher control, community governance, openness,...
 
What's New at ORCID?
What's New at ORCID?What's New at ORCID?
What's New at ORCID?
 
What is the ORCID API and what you can do with it? (R. Peters)
What is the ORCID API and what you can do with it? (R. Peters)What is the ORCID API and what you can do with it? (R. Peters)
What is the ORCID API and what you can do with it? (R. Peters)
 
ORCID API in Action (A. Wrigley)
ORCID API in Action (A. Wrigley)ORCID API in Action (A. Wrigley)
ORCID API in Action (A. Wrigley)
 
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)
 
ORCID overview: why your lifelong identifier is important in the digital age ...
ORCID overview: why your lifelong identifier is important in the digital age ...ORCID overview: why your lifelong identifier is important in the digital age ...
ORCID overview: why your lifelong identifier is important in the digital age ...
 
Introduction and ORCID overview (N. Miyairi)
Introduction and ORCID overview (N. Miyairi)Introduction and ORCID overview (N. Miyairi)
Introduction and ORCID overview (N. Miyairi)
 
ORCID in platform research lifecycle products (M. Buys)
ORCID in platform research lifecycle products (M. Buys)ORCID in platform research lifecycle products (M. Buys)
ORCID in platform research lifecycle products (M. Buys)
 
ORCID: Today and the Future (L. Haak)
ORCID: Today and the Future (L. Haak)ORCID: Today and the Future (L. Haak)
ORCID: Today and the Future (L. Haak)
 
ORCID Member Site Integration: Using the API
ORCID Member Site Integration: Using the APIORCID Member Site Integration: Using the API
ORCID Member Site Integration: Using the API
 
Bryant outreach report 05222013
Bryant outreach report 05222013Bryant outreach report 05222013
Bryant outreach report 05222013
 
What in the World is ORCID? (Haak)
What in the World is ORCID? (Haak)What in the World is ORCID? (Haak)
What in the World is ORCID? (Haak)
 
ORCID Consortium in Australia (N. Simmons)
ORCID Consortium in Australia (N. Simmons)ORCID Consortium in Australia (N. Simmons)
ORCID Consortium in Australia (N. Simmons)
 
ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...
ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...
ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...
 
ORCID for researchers: What, why, how?
ORCID for researchers: What, why, how?ORCID for researchers: What, why, how?
ORCID for researchers: What, why, how?
 
ORCID introduction
ORCID introductionORCID introduction
ORCID introduction
 
Getting Connected with the ORCID API (A. Wrigley)
Getting Connected with the ORCID API (A. Wrigley)Getting Connected with the ORCID API (A. Wrigley)
Getting Connected with the ORCID API (A. Wrigley)
 
Practical Guide for ORCID Users
Practical Guide for ORCID Users Practical Guide for ORCID Users
Practical Guide for ORCID Users
 

Viewers also liked

20131029_Welcome
20131029_Welcome20131029_Welcome
20131029_WelcomeORCID, Inc
 
Kaye odin dryad presentation 2
Kaye odin dryad presentation 2Kaye odin dryad presentation 2
Kaye odin dryad presentation 2ORCID, Inc
 
On Innovations in Scholarly Communication: Interoperability of Persistent Ide...
On Innovations in Scholarly Communication: Interoperability of Persistent Ide...On Innovations in Scholarly Communication: Interoperability of Persistent Ide...
On Innovations in Scholarly Communication: Interoperability of Persistent Ide...ORCID, Inc
 
ORCID Today and Tomorrow (L. Haak, A. Meadows, L. Paglione)
ORCID Today and Tomorrow (L. Haak, A. Meadows, L. Paglione)ORCID Today and Tomorrow (L. Haak, A. Meadows, L. Paglione)
ORCID Today and Tomorrow (L. Haak, A. Meadows, L. Paglione)ORCID, Inc
 
Avedas orcid outreach_meeting_20130523
Avedas orcid outreach_meeting_20130523Avedas orcid outreach_meeting_20130523
Avedas orcid outreach_meeting_20130523ORCID, Inc
 
Hypothesis ORCID presentation
Hypothesis ORCID presentationHypothesis ORCID presentation
Hypothesis ORCID presentationORCID, Inc
 
ORCID Status and Plans: Tokyo Outreach Meeting 2014
ORCID Status and Plans: Tokyo Outreach Meeting 2014ORCID Status and Plans: Tokyo Outreach Meeting 2014
ORCID Status and Plans: Tokyo Outreach Meeting 2014ORCID, Inc
 
Attribution in the Research Lifecycle: Persistent identifiers
Attribution in the Research Lifecycle: Persistent identifiersAttribution in the Research Lifecycle: Persistent identifiers
Attribution in the Research Lifecycle: Persistent identifiersORCID, Inc
 
ORCID Implementation at National Chiao Tung University (Shyan-Ming Yuan)
ORCID Implementation at National Chiao Tung University (Shyan-Ming Yuan)ORCID Implementation at National Chiao Tung University (Shyan-Ming Yuan)
ORCID Implementation at National Chiao Tung University (Shyan-Ming Yuan)ORCID, Inc
 
20131117 charleston bryant
20131117 charleston bryant20131117 charleston bryant
20131117 charleston bryantORCID, Inc
 
Introduction ORCID adoption by funding organizations - Andrea Biddle Septembe...
Introduction ORCID adoption by funding organizations - Andrea Biddle Septembe...Introduction ORCID adoption by funding organizations - Andrea Biddle Septembe...
Introduction ORCID adoption by funding organizations - Andrea Biddle Septembe...ORCID, Inc
 
Improving Discoverability with Unique Identifiers: ORCID, ISNI, and Implement...
Improving Discoverability with Unique Identifiers: ORCID, ISNI, and Implement...Improving Discoverability with Unique Identifiers: ORCID, ISNI, and Implement...
Improving Discoverability with Unique Identifiers: ORCID, ISNI, and Implement...ORCID, Inc
 
Theses and Dissertations and ORCID
Theses and Dissertations and ORCIDTheses and Dissertations and ORCID
Theses and Dissertations and ORCIDORCID, Inc
 
ORCID iDs in the Academic Publishing Workflow: ORCID iDs and CrossRef
ORCID iDs in the Academic Publishing Workflow: ORCID iDs and CrossRefORCID iDs in the Academic Publishing Workflow: ORCID iDs and CrossRef
ORCID iDs in the Academic Publishing Workflow: ORCID iDs and CrossRefORCID, Inc
 
The adoption of ORCID identifiers by funding organizations
The adoption of ORCID identifiers by funding organizationsThe adoption of ORCID identifiers by funding organizations
The adoption of ORCID identifiers by funding organizationsORCID, Inc
 
20131030 Vaughn
20131030 Vaughn20131030 Vaughn
20131030 VaughnORCID, Inc
 

Viewers also liked (16)

20131029_Welcome
20131029_Welcome20131029_Welcome
20131029_Welcome
 
Kaye odin dryad presentation 2
Kaye odin dryad presentation 2Kaye odin dryad presentation 2
Kaye odin dryad presentation 2
 
On Innovations in Scholarly Communication: Interoperability of Persistent Ide...
On Innovations in Scholarly Communication: Interoperability of Persistent Ide...On Innovations in Scholarly Communication: Interoperability of Persistent Ide...
On Innovations in Scholarly Communication: Interoperability of Persistent Ide...
 
ORCID Today and Tomorrow (L. Haak, A. Meadows, L. Paglione)
ORCID Today and Tomorrow (L. Haak, A. Meadows, L. Paglione)ORCID Today and Tomorrow (L. Haak, A. Meadows, L. Paglione)
ORCID Today and Tomorrow (L. Haak, A. Meadows, L. Paglione)
 
Avedas orcid outreach_meeting_20130523
Avedas orcid outreach_meeting_20130523Avedas orcid outreach_meeting_20130523
Avedas orcid outreach_meeting_20130523
 
Hypothesis ORCID presentation
Hypothesis ORCID presentationHypothesis ORCID presentation
Hypothesis ORCID presentation
 
ORCID Status and Plans: Tokyo Outreach Meeting 2014
ORCID Status and Plans: Tokyo Outreach Meeting 2014ORCID Status and Plans: Tokyo Outreach Meeting 2014
ORCID Status and Plans: Tokyo Outreach Meeting 2014
 
Attribution in the Research Lifecycle: Persistent identifiers
Attribution in the Research Lifecycle: Persistent identifiersAttribution in the Research Lifecycle: Persistent identifiers
Attribution in the Research Lifecycle: Persistent identifiers
 
ORCID Implementation at National Chiao Tung University (Shyan-Ming Yuan)
ORCID Implementation at National Chiao Tung University (Shyan-Ming Yuan)ORCID Implementation at National Chiao Tung University (Shyan-Ming Yuan)
ORCID Implementation at National Chiao Tung University (Shyan-Ming Yuan)
 
20131117 charleston bryant
20131117 charleston bryant20131117 charleston bryant
20131117 charleston bryant
 
Introduction ORCID adoption by funding organizations - Andrea Biddle Septembe...
Introduction ORCID adoption by funding organizations - Andrea Biddle Septembe...Introduction ORCID adoption by funding organizations - Andrea Biddle Septembe...
Introduction ORCID adoption by funding organizations - Andrea Biddle Septembe...
 
Improving Discoverability with Unique Identifiers: ORCID, ISNI, and Implement...
Improving Discoverability with Unique Identifiers: ORCID, ISNI, and Implement...Improving Discoverability with Unique Identifiers: ORCID, ISNI, and Implement...
Improving Discoverability with Unique Identifiers: ORCID, ISNI, and Implement...
 
Theses and Dissertations and ORCID
Theses and Dissertations and ORCIDTheses and Dissertations and ORCID
Theses and Dissertations and ORCID
 
ORCID iDs in the Academic Publishing Workflow: ORCID iDs and CrossRef
ORCID iDs in the Academic Publishing Workflow: ORCID iDs and CrossRefORCID iDs in the Academic Publishing Workflow: ORCID iDs and CrossRef
ORCID iDs in the Academic Publishing Workflow: ORCID iDs and CrossRef
 
The adoption of ORCID identifiers by funding organizations
The adoption of ORCID identifiers by funding organizationsThe adoption of ORCID identifiers by funding organizations
The adoption of ORCID identifiers by funding organizations
 
20131030 Vaughn
20131030 Vaughn20131030 Vaughn
20131030 Vaughn
 

Similar to ORCID Tech Intro - California Digital Libraries

ORCID Collect & Connect: understanding integrations and the API (M. Buys)
ORCID Collect & Connect: understanding integrations and the API (M. Buys)ORCID Collect & Connect: understanding integrations and the API (M. Buys)
ORCID Collect & Connect: understanding integrations and the API (M. Buys)ORCID, Inc
 
Paglione outreach tech presentation
Paglione outreach tech presentationPaglione outreach tech presentation
Paglione outreach tech presentationORCID, Inc
 
ORCID API introduction
ORCID API introductionORCID API introduction
ORCID API introductionJisc
 
ORCID Support & ORCID Support Advance
ORCID Support & ORCID Support AdvanceORCID Support & ORCID Support Advance
ORCID Support & ORCID Support AdvanceJisc
 
Webinar: API Extravaganza! Combining Google Analytics and ORCID API
Webinar: API Extravaganza! Combining Google Analytics and ORCID APIWebinar: API Extravaganza! Combining Google Analytics and ORCID API
Webinar: API Extravaganza! Combining Google Analytics and ORCID APIARDC
 
Jisc UK ORCID Support: onboarding webinar
Jisc UK ORCID Support: onboarding webinarJisc UK ORCID Support: onboarding webinar
Jisc UK ORCID Support: onboarding webinarJisc
 
Integrating with the ORCID API
Integrating with the ORCID APIIntegrating with the ORCID API
Integrating with the ORCID APINobuko Miyairi
 
CrossRef Annual Meeting 2012 ORCID Laure Haak
CrossRef Annual Meeting 2012 ORCID Laure HaakCrossRef Annual Meeting 2012 ORCID Laure Haak
CrossRef Annual Meeting 2012 ORCID Laure HaakCrossref
 
The Jisc UK ORCID use cases and API workshop
The Jisc UK ORCID use cases and API workshopThe Jisc UK ORCID use cases and API workshop
The Jisc UK ORCID use cases and API workshopJisc
 
ORCID: Connecting Research and Researchers
ORCID: Connecting Research and ResearchersORCID: Connecting Research and Researchers
ORCID: Connecting Research and ResearchersORCID, Inc
 
Collect and Connect: Integrating ORCID into research workflows (M. Buys)
Collect and Connect: Integrating ORCID into research workflows (M. Buys)Collect and Connect: Integrating ORCID into research workflows (M. Buys)
Collect and Connect: Integrating ORCID into research workflows (M. Buys)ORCID, Inc
 
Your Work is Distinctive, What About Your Name? - Laurel Haake (ORCID) - #OA...
Your Work is Distinctive, What About Your Name? - Laurel Haake (ORCID) - #OA...Your Work is Distinctive, What About Your Name? - Laurel Haake (ORCID) - #OA...
Your Work is Distinctive, What About Your Name? - Laurel Haake (ORCID) - #OA...QScience
 
ORCID_Spain_20130906
ORCID_Spain_20130906ORCID_Spain_20130906
ORCID_Spain_20130906ORCID, Inc
 
The Crossref/ORCID Auto-Update: all you need to know
The Crossref/ORCID Auto-Update: all you need to knowThe Crossref/ORCID Auto-Update: all you need to know
The Crossref/ORCID Auto-Update: all you need to knowCrossref
 
Top Tech Tips 2: ORCID
Top Tech Tips 2: ORCIDTop Tech Tips 2: ORCID
Top Tech Tips 2: ORCIDAdam Moore
 
20131030 Technical Update
20131030 Technical Update20131030 Technical Update
20131030 Technical UpdateORCID, Inc
 
DSpace 7 ORCID Integration
DSpace 7 ORCID IntegrationDSpace 7 ORCID Integration
DSpace 7 ORCID Integration4Science
 
Your Work is Distinctive, What about Your Name?
Your Work is Distinctive, What about Your Name?Your Work is Distinctive, What about Your Name?
Your Work is Distinctive, What about Your Name?ORCID, Inc
 

Similar to ORCID Tech Intro - California Digital Libraries (20)

ORCID Collect & Connect: understanding integrations and the API (M. Buys)
ORCID Collect & Connect: understanding integrations and the API (M. Buys)ORCID Collect & Connect: understanding integrations and the API (M. Buys)
ORCID Collect & Connect: understanding integrations and the API (M. Buys)
 
Holt "Working with Scholarly APIs: A NISO Training Series, Session Two: ORCID"
Holt "Working with Scholarly APIs: A NISO Training Series, Session Two: ORCID"Holt "Working with Scholarly APIs: A NISO Training Series, Session Two: ORCID"
Holt "Working with Scholarly APIs: A NISO Training Series, Session Two: ORCID"
 
Paglione outreach tech presentation
Paglione outreach tech presentationPaglione outreach tech presentation
Paglione outreach tech presentation
 
ORCID API introduction
ORCID API introductionORCID API introduction
ORCID API introduction
 
ORCID Support & ORCID Support Advance
ORCID Support & ORCID Support AdvanceORCID Support & ORCID Support Advance
ORCID Support & ORCID Support Advance
 
Webinar: API Extravaganza! Combining Google Analytics and ORCID API
Webinar: API Extravaganza! Combining Google Analytics and ORCID APIWebinar: API Extravaganza! Combining Google Analytics and ORCID API
Webinar: API Extravaganza! Combining Google Analytics and ORCID API
 
Jisc UK ORCID Support: onboarding webinar
Jisc UK ORCID Support: onboarding webinarJisc UK ORCID Support: onboarding webinar
Jisc UK ORCID Support: onboarding webinar
 
ORCID API
ORCID APIORCID API
ORCID API
 
Integrating with the ORCID API
Integrating with the ORCID APIIntegrating with the ORCID API
Integrating with the ORCID API
 
CrossRef Annual Meeting 2012 ORCID Laure Haak
CrossRef Annual Meeting 2012 ORCID Laure HaakCrossRef Annual Meeting 2012 ORCID Laure Haak
CrossRef Annual Meeting 2012 ORCID Laure Haak
 
The Jisc UK ORCID use cases and API workshop
The Jisc UK ORCID use cases and API workshopThe Jisc UK ORCID use cases and API workshop
The Jisc UK ORCID use cases and API workshop
 
ORCID: Connecting Research and Researchers
ORCID: Connecting Research and ResearchersORCID: Connecting Research and Researchers
ORCID: Connecting Research and Researchers
 
Collect and Connect: Integrating ORCID into research workflows (M. Buys)
Collect and Connect: Integrating ORCID into research workflows (M. Buys)Collect and Connect: Integrating ORCID into research workflows (M. Buys)
Collect and Connect: Integrating ORCID into research workflows (M. Buys)
 
Your Work is Distinctive, What About Your Name? - Laurel Haake (ORCID) - #OA...
Your Work is Distinctive, What About Your Name? - Laurel Haake (ORCID) - #OA...Your Work is Distinctive, What About Your Name? - Laurel Haake (ORCID) - #OA...
Your Work is Distinctive, What About Your Name? - Laurel Haake (ORCID) - #OA...
 
ORCID_Spain_20130906
ORCID_Spain_20130906ORCID_Spain_20130906
ORCID_Spain_20130906
 
The Crossref/ORCID Auto-Update: all you need to know
The Crossref/ORCID Auto-Update: all you need to knowThe Crossref/ORCID Auto-Update: all you need to know
The Crossref/ORCID Auto-Update: all you need to know
 
Top Tech Tips 2: ORCID
Top Tech Tips 2: ORCIDTop Tech Tips 2: ORCID
Top Tech Tips 2: ORCID
 
20131030 Technical Update
20131030 Technical Update20131030 Technical Update
20131030 Technical Update
 
DSpace 7 ORCID Integration
DSpace 7 ORCID IntegrationDSpace 7 ORCID Integration
DSpace 7 ORCID Integration
 
Your Work is Distinctive, What about Your Name?
Your Work is Distinctive, What about Your Name?Your Work is Distinctive, What about Your Name?
Your Work is Distinctive, What about Your Name?
 

More from ORCID, Inc

ORCID Overview: Why your Lifelong Identifier is Important in the Digital Age ...
ORCID Overview: Why your Lifelong Identifier is Important in the Digital Age ...ORCID Overview: Why your Lifelong Identifier is Important in the Digital Age ...
ORCID Overview: Why your Lifelong Identifier is Important in the Digital Age ...ORCID, Inc
 
Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)
Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)
Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)ORCID, Inc
 
ORCID at UniKL (P. Hamzah)
ORCID at UniKL (P. Hamzah)ORCID at UniKL (P. Hamzah)
ORCID at UniKL (P. Hamzah)ORCID, Inc
 
ORCID Integration Videos
ORCID Integration VideosORCID Integration Videos
ORCID Integration VideosORCID, Inc
 
ORCID as a Community Initiative (N. Miyairi)
ORCID as a Community Initiative (N. Miyairi)ORCID as a Community Initiative (N. Miyairi)
ORCID as a Community Initiative (N. Miyairi)ORCID, Inc
 
Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)
Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)
Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)ORCID, Inc
 
MyRID: ORCID Integration in Malaysia (T. Dharmalingam)
MyRID: ORCID Integration in Malaysia (T. Dharmalingam)MyRID: ORCID Integration in Malaysia (T. Dharmalingam)
MyRID: ORCID Integration in Malaysia (T. Dharmalingam)ORCID, Inc
 
Spreading the ORCID Word: ORCID Communications Webinar (2016.12)
Spreading the ORCID Word: ORCID Communications Webinar (2016.12)Spreading the ORCID Word: ORCID Communications Webinar (2016.12)
Spreading the ORCID Word: ORCID Communications Webinar (2016.12)ORCID, Inc
 
ORCID @ Khalifa University
ORCID @ Khalifa UniversityORCID @ Khalifa University
ORCID @ Khalifa UniversityORCID, Inc
 
ORCID Integration with Institutional Repositories (D. Grenz)
ORCID Integration with Institutional Repositories (D. Grenz)ORCID Integration with Institutional Repositories (D. Grenz)
ORCID Integration with Institutional Repositories (D. Grenz)ORCID, Inc
 
Research in a world where machines read (M. Buys)
Research in a world where machines read (M. Buys)Research in a world where machines read (M. Buys)
Research in a world where machines read (M. Buys)ORCID, Inc
 
Benefits to researchers who use ORCID (P. Purnell)
Benefits to researchers who use ORCID (P. Purnell)Benefits to researchers who use ORCID (P. Purnell)
Benefits to researchers who use ORCID (P. Purnell)ORCID, Inc
 
Research Management & Publishing (M. Jagerhorn)
Research Management & Publishing (M. Jagerhorn)Research Management & Publishing (M. Jagerhorn)
Research Management & Publishing (M. Jagerhorn)ORCID, Inc
 
ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)
ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)
ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)ORCID, Inc
 
ORCID as a Community Initiative (Miyairi)
ORCID as a Community Initiative (Miyairi)ORCID as a Community Initiative (Miyairi)
ORCID as a Community Initiative (Miyairi)ORCID, Inc
 
ORCID Integration Videos
ORCID Integration VideosORCID Integration Videos
ORCID Integration VideosORCID, Inc
 
The Latest on ORCID API v2
The Latest on ORCID API v2 The Latest on ORCID API v2
The Latest on ORCID API v2 ORCID, Inc
 
What’s New in ORCID Tech 2016 (Robert Peters)
What’s New in ORCID Tech 2016 (Robert Peters)What’s New in ORCID Tech 2016 (Robert Peters)
What’s New in ORCID Tech 2016 (Robert Peters)ORCID, Inc
 
ORCID API Perks & Pitfalls
ORCID API Perks & PitfallsORCID API Perks & Pitfalls
ORCID API Perks & PitfallsORCID, Inc
 
Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...
Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...
Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...ORCID, Inc
 

More from ORCID, Inc (20)

ORCID Overview: Why your Lifelong Identifier is Important in the Digital Age ...
ORCID Overview: Why your Lifelong Identifier is Important in the Digital Age ...ORCID Overview: Why your Lifelong Identifier is Important in the Digital Age ...
ORCID Overview: Why your Lifelong Identifier is Important in the Digital Age ...
 
Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)
Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)
Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)
 
ORCID at UniKL (P. Hamzah)
ORCID at UniKL (P. Hamzah)ORCID at UniKL (P. Hamzah)
ORCID at UniKL (P. Hamzah)
 
ORCID Integration Videos
ORCID Integration VideosORCID Integration Videos
ORCID Integration Videos
 
ORCID as a Community Initiative (N. Miyairi)
ORCID as a Community Initiative (N. Miyairi)ORCID as a Community Initiative (N. Miyairi)
ORCID as a Community Initiative (N. Miyairi)
 
Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)
Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)
Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)
 
MyRID: ORCID Integration in Malaysia (T. Dharmalingam)
MyRID: ORCID Integration in Malaysia (T. Dharmalingam)MyRID: ORCID Integration in Malaysia (T. Dharmalingam)
MyRID: ORCID Integration in Malaysia (T. Dharmalingam)
 
Spreading the ORCID Word: ORCID Communications Webinar (2016.12)
Spreading the ORCID Word: ORCID Communications Webinar (2016.12)Spreading the ORCID Word: ORCID Communications Webinar (2016.12)
Spreading the ORCID Word: ORCID Communications Webinar (2016.12)
 
ORCID @ Khalifa University
ORCID @ Khalifa UniversityORCID @ Khalifa University
ORCID @ Khalifa University
 
ORCID Integration with Institutional Repositories (D. Grenz)
ORCID Integration with Institutional Repositories (D. Grenz)ORCID Integration with Institutional Repositories (D. Grenz)
ORCID Integration with Institutional Repositories (D. Grenz)
 
Research in a world where machines read (M. Buys)
Research in a world where machines read (M. Buys)Research in a world where machines read (M. Buys)
Research in a world where machines read (M. Buys)
 
Benefits to researchers who use ORCID (P. Purnell)
Benefits to researchers who use ORCID (P. Purnell)Benefits to researchers who use ORCID (P. Purnell)
Benefits to researchers who use ORCID (P. Purnell)
 
Research Management & Publishing (M. Jagerhorn)
Research Management & Publishing (M. Jagerhorn)Research Management & Publishing (M. Jagerhorn)
Research Management & Publishing (M. Jagerhorn)
 
ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)
ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)
ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)
 
ORCID as a Community Initiative (Miyairi)
ORCID as a Community Initiative (Miyairi)ORCID as a Community Initiative (Miyairi)
ORCID as a Community Initiative (Miyairi)
 
ORCID Integration Videos
ORCID Integration VideosORCID Integration Videos
ORCID Integration Videos
 
The Latest on ORCID API v2
The Latest on ORCID API v2 The Latest on ORCID API v2
The Latest on ORCID API v2
 
What’s New in ORCID Tech 2016 (Robert Peters)
What’s New in ORCID Tech 2016 (Robert Peters)What’s New in ORCID Tech 2016 (Robert Peters)
What’s New in ORCID Tech 2016 (Robert Peters)
 
ORCID API Perks & Pitfalls
ORCID API Perks & PitfallsORCID API Perks & Pitfalls
ORCID API Perks & Pitfalls
 
Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...
Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...
Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...
 

Recently uploaded

Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 

Recently uploaded (20)

Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 

ORCID Tech Intro - California Digital Libraries

  • 1. ORCID: Technical Introduction California Digital Libraries | Sept 19, 2014 Liz Krznarich, ORCID Support http://orcid.org/0000-0001-6622-4910 support@orcid.org Contact Info: p. +1-301-922-9062 a. 10411 Motor City Drive, Suite 750, Bethesda, MD 20817o UrScAid.org
  • 2. Today’s Topics • ORCID Registry – User Perspective • API Features • XML Schema • Building an Integraton – Basic Steps • Support/Communication Resources 19 September 2014 orcid.org 2
  • 3. Getting Started First Name Last Name Email Password Privacy & Communications Preferences Register Via the ORCID Website https://orcid.org/register Or as part of an integration from another site 19 September 2014 orcid.org 3
  • 4. Getting Started Welcome to the ORCID Registry! Image credit: RaHuL Rodriguez, ccBY-SA 2.0, Oct 5, 2012 http://www.flickr.com/photos/92963434@N03/9162677329 • Verify your email address • Here’s your ORCID iD: 19 September 2014 orcid.org 4
  • 5. The ORCID Record Contains:  Biographical Data  Education Data  Employment Data  Works Data  Funding Data 19 September 2014 orcid.org 5
  • 6. The ORCID Record Biographical Data Include Multiple  Add a Names Description  19 September 2014 orcid.org 6
  • 7. The ORCID Record Education Data Employment Data Organization list from  Ringgold (an ISNI Registrar) 19 September 2014 orcid.org 7
  • 8. The ORCID Record Funding Data Funding agency  list consistent with FundRef Search & link Wizards  19 September 2014 orcid.org 8
  • 9. The ORCID Record Works Data Search & Link Wizards: • ANDS Registry • CrossRef Metadata Search • DataCite Metadata Store • Europe PubMed Central • ResearcherID • Scopus • ISNI number & ISBNs Classifications & metadata fields consistent w/CASRAI Translated titles & language support Structured citations in BibTeX 19 September 2014 orcid.org 9
  • 10. User privacy ● Information in an ORCID Record has a privacy setting, which can be set by the account owner. Accessible by : Anyone Account Owner, Trusted Account Owner Organization(s) ● Account information (settings, permissions) is accessible by the account owner 19 September 2014 orcid.org 10
  • 11. The ORCID API • Authenticate- Get a user’s authenticated ORCID iD • Read- Read public and read-limited items • Add- Post new items to the record • Update- Update or delete items you previously added 19 September 2014 orcid.org 11
  • 12. The ORCID API User: Follow a link to connect your system to their ORCID record (on the ORCID site, your website, or in an email message) System: Send the use to the authorize URL https://orcid.org/oauth/authorize? client_id=0000-0003-2996-8827& response_type=code& scope=/orcid-profile/read-limited& redirect_uri=https://yoursite.org 19 September 2014 orcid.org 12
  • 13. The ORCID API User: authorize the connection System: Receive an authorization code & the user’s ORCID iD 19 September 2014 orcid.org 13
  • 14. The ORCID API User: no action System: Exchange the authorization code for an access token curl -i -L -H 'Accept: application/json' --data 'client_id=0000-0002-9189-9909&client_secret=719b5c31-5681- 4dce-a317- ff1bc1e94277&grant_type=authorization_code&code=GU0yrC&redirect _uri=https://developers.google.com/oauthplayground' 'https://api.qa.orcid.org/oauth/token' -k HTTP/1.1 200 OK {"access_token":"0a3ac65f-f8a7-4257-b605-aff0ab37d464", "token_type":"bearer", "refresh_token":"16d75d2d-bb75-4087-8a01-685e5f03faf8", "expires_in":631138518, "scope":"/orcid-profile/read-limited", "orcid":"0000-0003-4153-0078”} 19 September 2014 orcid.org 14
  • 15. The ORCID API User: no action System: Use the access token to read the user’s record HTTP/1.1 200 OK <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <orcid-message xmlns="http://www.orcid.org/ns/orcid"> <message-version>1.2_rc3</message-version> <orcid-profile type="user"> <orcid-identifier> <uri>http://qa.orcid.org/0000-0003-4153-0078</uri> <path>0000-0003-4153-0078</path> <host>qa.orcid.org</host> </orcid-identifier> … 19 September 2014 orcid.org 15
  • 16. The ORCID API User: Select items to add to their ORCID record System: Use the access token to post information 19 September 2014 orcid.org 16
  • 17. The ORCID API The ORCID record is updated 19 September 2014 orcid.org 17
  • 18. Most common workflows Get the researcher’s ORCID iD Read data from a user’s ORCID Record Add works, funding, affiliations, or biographical information to an ORCID Record Enable user to display your system’s identifier & link on their ORCID Record Create an ORCID iD for your employees 19 September 2014 orcid.org 18
  • 19. The ORCID API Creating ORCID Records Batch Create • You create a record for the researchers via the API • User is sent an email asking them to claim the record and take control of it • Must have researchers’ consent Create on Demand • Webpage/email with link for researchers to sign up/sign in • Researchers grant you access to add information to their record when they register 19 September 2014 orcid.org 19
  • 20. The ORCID API ORCID Messages XML has 4 parts: • <orcid-identifier> & <orcid-history> system generated info about the record • <orcid-bio> personal information about the researcher • <orcid-activities> information about the researcher’s activities including works, funding, employment and education Currently on version 1.1, but release candidate 1.2_rc4 is available https://github.com/ORCID/ORCID-Source/blob/master/orcid-model/ src/main/resources/README.md 19 September 2014 orcid.org 20
  • 21. Resources Technical steps to build an integration • Get credentials for the ORCID Sandbox sandbox.orcid.org • Setup an integration on the sandbox • Work with ORCID staff to test your sandbox integration • Launch your integration on the ORCID Registry 19 September 2014 orcid.org 21
  • 22. Non technical steps Resources • Educate your researchers about ORCID • Publish internal articles about ORCID • Use the ORCID logo on your site • Share Promotional materials • Host workshops • Education your administration about ORCID • Create help documentation for your integration • Publicize your completed integration 19 September 2014 orcid.org 22
  • 23. • Start with the API Guide (http://support.orcid.org/knowledgebase/articles/180285) • ORCID Knowledge Base Resources • High level guides (http://support.orcid.org/knowledgebase/topics/32828) • Detailed tutorials (http://support.orcid.org/knowledgebase/topics/32831) • ORCID API Users Group (https://groups.google.com/forum/#!forum/orcid-api-users) • Check out other integrations (https://orcid.org/organizations/integrators/current) • ORCID Support (http://support.orcid.org or support@orcid.org) 19 September 2014 orcid.org 23