SlideShare a Scribd company logo
1 of 38
Download to read offline
16 February 2016 orcid.org 1
OurVision
ORCID’s vision is a world where
all researchers are uniquely identified
and connected to their contributions
across time, disciplines, and borders.
ORCID at three
16 February 2016 orcid.org 2
Sustain: build toward financial sustainability
Lead: enable community conversations
Mature: ensure infrastructure supports scalability
16 February 2016 orcid.org 3
2 million researchers have registered
for an ORCID identifier.
4
Organizations are collecting ORCID
iDs and connecting them to identifiers
for people, places, and things
ORCID enables assertions
orcid.org
Collect & Connect
ORCID Outreach Meeting
Canberra, February 16 2016
Alice Meadows
Director of Community Engagement & Support
a.meadows@orcid.org
orcid.org/0000-0003-2161-3781
@alicejmeadows
16 February 2016 orcid.org 6
Research infrastructure aka plumbing
16 February 2016 orcid.org 7Both commons.wikimedia.org
16 February 2016 orcid.org 8Chinese lion Royalty Free Stock Photos
16 February 2016 orcid.org 9
orcid.org/about/team
Community Engagement & Support
Catalina Wilmers
San Francisco,
USA
Cheryl Sethate
Gaborone,
Botswana
Alice Meadows
Boston, USA
Ana Patricia
Cardoso
Mexico City,
Mexico
Alainna
Therese Wrigley
Hong Kong
16 February 2016 orcid.org 11
“Good developers know how
things work. Great developers
know why things work.”
Steve Souders, Head Performance Engineer, Google
Collect & Connect goals
•  Clarify goals and expectations across sectors
•  Standardize and improve the user experience
•  Improve trust in connections between ORCID and
other identifiers
•  Increase efficiency and quality of integrations
•  Help ensure ORCID sustainability through a community
approach
16 February 2016 orcid.org 12
Integrations by region
16 February 2016 orcid.org 13
APAC
13%
EUR
58%
LAM
0%
MEA
1%
NA
28%
Integrations by sector
16 February 2016 orcid.org 14
Association
8%
Funder
4%
Publisher
15%
Repository
12%
Research
Institution
61%
Collect & Connect
16 February 2016 orcid.org 15
Collect Display Connect Sync
Authenticate!
16 February 2016 orcid.org 16
Collect
Research institutions: iDs for faculty and
students
Funders: iDs at grant submission and
review
Publishers/Repositories: iDs for
authors, reviewers, contributors
16 February 2016 orcid.org 17
Display
Research institutions: in faculty profiles,
with works
Funders: with awards
Publishers: with works
16 February 2016 orcid.org 18
Connect
Research institutions: with IDs for
affiliations
Funders: with IDs for grants
Publishers: with IDs for papers,
datasets, reviews
16 February 2016 orcid.org 19
Sync
All: sync updates
All: authenticate
16 February 2016 orcid.org 20
Next steps…
•  Map existing integrations
•  Document best practices and use cases
•  Update members.orcid.org
•  Create resources and collateral
•  ORCID engagement campaign
16 February 2016 orcid.org 21
16 February 2016 orcid.org 22www.mpasa.com.au
orcid.org
beyond what is ORCID...
...using the API
2016 february 15
laura paglione
technical director, ORCID
L.Paglione@ORCID.org
http://orcid.org/0000-0003-3188-6273
Contact Info: p. +1-301-500-2139 a. 10411 Motor City Drive, Suite 750, Bethesda, MD 20817 USA
orcid.org 24
the other stuff that has to happen
•  communications
•  rollout timing
•  evangelism – encouraging use
...can be much harder & more time consuming than using the API
let’s not get ahead of ourselves...
PHOTO: 3/2 nuts © M.G. Kafkas
https://flic.kr/p/4XytpS
orcid.org
basic API flow
ORCID Record
Yes!
Do you have
permission to do what
you want to do?
Get the permission;
store iD and “token”
Read the record or
update the record
No
OAuth
orcid.org 26
API (Application Programming Interface) –
interface that lets one software program “talk”
with another, exchanging data behind the scenes.
An ad, but good basic info about what an API can do:
http://paidpost.nytimes.com/ca-technologies/apis-the-building-
blocks-of-the-app-economy.html
what is an API?
PHOTO: 3/2 nuts © M.G. Kafkas
https://flic.kr/p/4XytpS
orcid.org 27
•  permissions / scopes – your contract with the user
•  the ORCID messages – format of the data exchanged
•  OAuth calls – the permission protocol – how you “execute
the contract”
•  ORCID-specific calls – providing  receiving information
with the registry
the ORCID API in a nutshell
PHOTO: 3/2 nuts © M.G. Kafkas
https://flic.kr/p/4XytpS
PHOTO: electronic circuit board
www.flickr.com/photos/creative_stock/5227842611
explaining scopes / permissions
orcid.org
ORCID registry depends on user-based permissions: 
Can I...
•  have your iD (/authenticate)
•  interact with the activities on your record
•  read (/activities/read)
•  update (/activities/update)
•  interact with your biographical information
•  read (/person/read)
•  update (/person/update)
what a message looks like
orcid.org
PHOTO: electronic circuit board
www.flickr.com/photos/creative_stock/5227842611
the OAuth calls – part 1
orcid.org
Initiate the process – Send the user to a “fancy” URL
https://orcid.org/oauth/authorize? 
client_id=0000-0002-3003-7862 
response_type=code 
scope=/activities/read-limited%20/activities/update 
redirect_uri=https://my.URL.org 
family_names=Paglionegiven_names=Lauraemail=l.paglione
%2B2014@orcid.orgorcid=0000-0001-6356-0580
The base URL – displays the screen
who’s asking?
what permission?
where the user goes next
Personalize the
experience
PHOTO: electronic circuit board
www.flickr.com/photos/creative_stock/5227842611
what the user sees
orcid.org
PHOTO: electronic circuit board
www.flickr.com/photos/creative_stock/5227842611
the OAuth calls – part 2
orcid.org
ORCID sends the user to your redirect, with a code
https://my.URL.org?htA3yE
you...
•  save the code – you need it for the next step
•  display something useful to the user
•  Authorize: thanks for your permission!
•  Deny: are you sure you don’t want to give permission?
The magic code
PHOTO: electronic circuit board
www.flickr.com/photos/creative_stock/5227842611
the OAuth calls – part 3a: the call
orcid.org
use the code to gain access using the ORCID API
https://api.orcid.org/oauth/token
HEADER: accept:application/json
DATA:
client_id=0000-0002-3003-7862
client_secret=f6ffa224-dc28-4c51-8c9e-ae4b86f61bc3
grant_type=authorization_code
code=htA3yE
redirect_uri=https%3A%2F%2Fmy.URL.org
our API calls always looks
like URLs (RESTful)
what format?
The magic code
confirming that you are
the right one to get this
information
PHOTO: electronic circuit board
www.flickr.com/photos/creative_stock/5227842611
the OAuth calls – part 3b: the result
orcid.org
the result of the call
access_token” : 6710dfee-6aab-445b-a266-205dd9085273,
token_type” : bearer,
expires_in” : 631138518,
scope” : /activities/read-limited /activities/update,
orcid” : 0000-0001-6356-0580,
name” : Laura Paglione”
store the access token and iD
when permission expires (in seconds)
your permission – executed contract
iD  name for the person
who gave permission
What you can do
PHOTO: electronic circuit board
www.flickr.com/photos/creative_stock/5227842611
ORCID-specific calls
orcid.org
•  Read data: GET
•  Add data: POST
•  Update data: PUT
BASE URL: https://api.orcid.org/0000-0000-0000-0000
HEADERS:
accept:application/json (reading) content-type:application/json (adding /updating)
Authorization: Bearer 6710dfee-6aab-445b-a266-205dd9085273
DATA (if adding or updating):
the file location=@file_location_name
Modifiers:
/works
/update
data format
Access token from before
PHOTO: electronic circuit board
www.flickr.com/photos/creative_stock/5227842611
but wait... there’s more
orcid.org
•  Error handling
•  API updates
•  about 1x/year
•  supported versions
•  release candidates
•  deprecated versions
resources
PHOTO: Stairway to somewhere © Jonathan Fenton
https://flic.kr/p/7Guxgu
member resources (includes planning  communication resources)
http://members.orcid.org
API documentation
http://members.orcid.org/api
getting authenticated ORCID iDs
http://members.orcid.org/api/tutorial-retrieve-orcid-id-curl-v12-and-earlier
vendors that support ORCID iDs
http://members.orcid.org/publisher-tools
getting help at ORCID
http://orcid.org/help/contact-us
• 
• 
• 
• 
• 
thank you
● http://orcid.org
● BLOG: http://orcid.org/about/news
● TWITTER: @ORCID_Org
orcid.org

More Related Content

What's hot

ORCID Implementations with University RIM Systems (University of Technology S...
ORCID Implementations with University RIM Systems (University of Technology S...ORCID Implementations with University RIM Systems (University of Technology S...
ORCID Implementations with University RIM Systems (University of Technology S...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 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
 
Why and How Funders are using ORCID iDs
Why and How Funders are using ORCID iDsWhy and How Funders are using ORCID iDs
Why and How Funders are using ORCID iDsORCID, Inc
 
ORCID Seminar at KAUST
ORCID Seminar at KAUSTORCID Seminar at KAUST
ORCID Seminar at KAUSTORCID, Inc
 
Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...
Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...
Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...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
 
VIVO and persistent identifiers: Integrating ORCID_08152013
VIVO and persistent identifiers: Integrating ORCID_08152013VIVO and persistent identifiers: Integrating ORCID_08152013
VIVO and persistent identifiers: Integrating ORCID_08152013Rebecca Bryant, PhD
 
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: Engaging Researchers
ORCID: Engaging ResearchersORCID: Engaging Researchers
ORCID: Engaging ResearchersORCID, 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
 
20151018 ORCID UAE workshop - MJ Buys
20151018 ORCID UAE workshop - MJ Buys20151018 ORCID UAE workshop - MJ Buys
20151018 ORCID UAE workshop - MJ BuysORCID, Inc
 
ORCID Tokyo Workshop - Introductions & Welcome (D. Wright)
ORCID Tokyo Workshop - Introductions & Welcome (D. Wright)ORCID Tokyo Workshop - Introductions & Welcome (D. Wright)
ORCID Tokyo Workshop - Introductions & Welcome (D. Wright)ORCID, Inc
 
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
 
Research Management & Publishing (M. Jagerhorn)
Research Management & Publishing (M. Jagerhorn)Research Management & Publishing (M. Jagerhorn)
Research Management & Publishing (M. Jagerhorn)ORCID, Inc
 
ORCID Technical Intro - English
ORCID Technical Intro - EnglishORCID Technical Intro - English
ORCID Technical Intro - EnglishORCID, Inc
 
Peer Review and Persistent Identifiers 20150428 ARCSCON
Peer Review and Persistent Identifiers 20150428 ARCSCONPeer Review and Persistent Identifiers 20150428 ARCSCON
Peer Review and Persistent Identifiers 20150428 ARCSCONORCID, 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
 
Wiley’s philosophy, policy and procedure for ORCID (K. Sasaki)
Wiley’s philosophy, policy and procedure for ORCID (K. Sasaki)Wiley’s philosophy, policy and procedure for ORCID (K. Sasaki)
Wiley’s philosophy, policy and procedure for ORCID (K. Sasaki)ORCID, Inc
 

What's hot (20)

ORCID Implementations with University RIM Systems (University of Technology S...
ORCID Implementations with University RIM Systems (University of Technology S...ORCID Implementations with University RIM Systems (University of Technology S...
ORCID Implementations with University RIM Systems (University of Technology S...
 
ORCID introduction
ORCID introductionORCID introduction
ORCID introduction
 
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 API in action (A. Wrigley)
ORCID API in action (A. Wrigley)ORCID API in action (A. Wrigley)
ORCID API in action (A. Wrigley)
 
Why and How Funders are using ORCID iDs
Why and How Funders are using ORCID iDsWhy and How Funders are using ORCID iDs
Why and How Funders are using ORCID iDs
 
ORCID Seminar at KAUST
ORCID Seminar at KAUSTORCID Seminar at KAUST
ORCID Seminar at KAUST
 
Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...
Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...
Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...
 
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)
 
VIVO and persistent identifiers: Integrating ORCID_08152013
VIVO and persistent identifiers: Integrating ORCID_08152013VIVO and persistent identifiers: Integrating ORCID_08152013
VIVO and persistent identifiers: Integrating ORCID_08152013
 
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: Engaging Researchers
ORCID: Engaging ResearchersORCID: Engaging Researchers
ORCID: Engaging Researchers
 
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...
 
20151018 ORCID UAE workshop - MJ Buys
20151018 ORCID UAE workshop - MJ Buys20151018 ORCID UAE workshop - MJ Buys
20151018 ORCID UAE workshop - MJ Buys
 
ORCID Tokyo Workshop - Introductions & Welcome (D. Wright)
ORCID Tokyo Workshop - Introductions & Welcome (D. Wright)ORCID Tokyo Workshop - Introductions & Welcome (D. Wright)
ORCID Tokyo Workshop - Introductions & Welcome (D. Wright)
 
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)
 
Research Management & Publishing (M. Jagerhorn)
Research Management & Publishing (M. Jagerhorn)Research Management & Publishing (M. Jagerhorn)
Research Management & Publishing (M. Jagerhorn)
 
ORCID Technical Intro - English
ORCID Technical Intro - EnglishORCID Technical Intro - English
ORCID Technical Intro - English
 
Peer Review and Persistent Identifiers 20150428 ARCSCON
Peer Review and Persistent Identifiers 20150428 ARCSCONPeer Review and Persistent Identifiers 20150428 ARCSCON
Peer Review and Persistent Identifiers 20150428 ARCSCON
 
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)
 
Wiley’s philosophy, policy and procedure for ORCID (K. Sasaki)
Wiley’s philosophy, policy and procedure for ORCID (K. Sasaki)Wiley’s philosophy, policy and procedure for ORCID (K. Sasaki)
Wiley’s philosophy, policy and procedure for ORCID (K. Sasaki)
 

Similar to ORCID Collect and Connect Program (A. Meadows)

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
 
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 API (M. Buys)
 ORCID API (M. Buys) ORCID API (M. Buys)
ORCID API (M. Buys)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
 
ORCID Communications Webinar March 1, 2016
ORCID Communications Webinar March 1, 2016ORCID Communications Webinar March 1, 2016
ORCID Communications Webinar March 1, 2016Alice Meadows
 
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
 
Spreading the ORCID word: ORCID communications webinar (June 2016)
Spreading the ORCID word: ORCID communications webinar (June 2016)Spreading the ORCID word: ORCID communications webinar (June 2016)
Spreading the ORCID word: ORCID communications webinar (June 2016)ORCID, Inc
 
The ORCID API (L. Paglione)
The ORCID API (L. Paglione)The ORCID API (L. Paglione)
The ORCID API (L. Paglione)ORCID, Inc
 
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: Today and the Future
ORCID: Today and the FutureORCID: Today and the Future
ORCID: Today and the FutureSusanMRob
 
Authority and VValidation in Digital Communications
Authority and VValidation in Digital CommunicationsAuthority and VValidation in Digital Communications
Authority and VValidation in Digital CommunicationsORCID, Inc
 
UKSG webinar: Identifiers: What are they good for and what should you be doin...
UKSG webinar: Identifiers: What are they good for and what should you be doin...UKSG webinar: Identifiers: What are they good for and what should you be doin...
UKSG webinar: Identifiers: What are they good for and what should you be doin...UKSG: connecting the knowledge community
 
Sharing information between systems: The ORCID API (Alainna Wrigley)
Sharing information between systems: The ORCID API (Alainna Wrigley)Sharing information between systems: The ORCID API (Alainna Wrigley)
Sharing information between systems: The ORCID API (Alainna Wrigley)ORCID, Inc
 
Interoperability: Research Identificaton (ORCID)
Interoperability: Research Identificaton (ORCID)Interoperability: Research Identificaton (ORCID)
Interoperability: Research Identificaton (ORCID)Christian Gutknecht
 
Working with the ORCID API (L. Paglione)
Working with the ORCID API (L. Paglione) Working with the ORCID API (L. Paglione)
Working with the ORCID API (L. Paglione) ORCID, Inc
 
Building Open Research Infrastructure with PIDs
Building Open Research Infrastructure with PIDsBuilding Open Research Infrastructure with PIDs
Building Open Research Infrastructure with PIDsETH-Bibliothek
 
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
 
Launching a National ORCID Consortium - Community Engagement and Support (A. ...
Launching a National ORCID Consortium - Community Engagement and Support (A. ...Launching a National ORCID Consortium - Community Engagement and Support (A. ...
Launching a National ORCID Consortium - Community Engagement and Support (A. ...ORCID, Inc
 
ORCID_Spain_20130906
ORCID_Spain_20130906ORCID_Spain_20130906
ORCID_Spain_20130906ORCID, Inc
 
ORCID Tech Intro - California Digital Libraries
ORCID Tech Intro - California Digital LibrariesORCID Tech Intro - California Digital Libraries
ORCID Tech Intro - California Digital LibrariesORCID, Inc
 

Similar to ORCID Collect and Connect Program (A. Meadows) (20)

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 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 API (M. Buys)
 ORCID API (M. Buys) ORCID API (M. Buys)
ORCID API (M. Buys)
 
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 Communications Webinar March 1, 2016
ORCID Communications Webinar March 1, 2016ORCID Communications Webinar March 1, 2016
ORCID Communications Webinar March 1, 2016
 
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)
 
Spreading the ORCID word: ORCID communications webinar (June 2016)
Spreading the ORCID word: ORCID communications webinar (June 2016)Spreading the ORCID word: ORCID communications webinar (June 2016)
Spreading the ORCID word: ORCID communications webinar (June 2016)
 
The ORCID API (L. Paglione)
The ORCID API (L. Paglione)The ORCID API (L. Paglione)
The ORCID API (L. Paglione)
 
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: Today and the Future
ORCID: Today and the FutureORCID: Today and the Future
ORCID: Today and the Future
 
Authority and VValidation in Digital Communications
Authority and VValidation in Digital CommunicationsAuthority and VValidation in Digital Communications
Authority and VValidation in Digital Communications
 
UKSG webinar: Identifiers: What are they good for and what should you be doin...
UKSG webinar: Identifiers: What are they good for and what should you be doin...UKSG webinar: Identifiers: What are they good for and what should you be doin...
UKSG webinar: Identifiers: What are they good for and what should you be doin...
 
Sharing information between systems: The ORCID API (Alainna Wrigley)
Sharing information between systems: The ORCID API (Alainna Wrigley)Sharing information between systems: The ORCID API (Alainna Wrigley)
Sharing information between systems: The ORCID API (Alainna Wrigley)
 
Interoperability: Research Identificaton (ORCID)
Interoperability: Research Identificaton (ORCID)Interoperability: Research Identificaton (ORCID)
Interoperability: Research Identificaton (ORCID)
 
Working with the ORCID API (L. Paglione)
Working with the ORCID API (L. Paglione) Working with the ORCID API (L. Paglione)
Working with the ORCID API (L. Paglione)
 
Building Open Research Infrastructure with PIDs
Building Open Research Infrastructure with PIDsBuilding Open Research Infrastructure with PIDs
Building Open Research Infrastructure with PIDs
 
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)
 
Launching a National ORCID Consortium - Community Engagement and Support (A. ...
Launching a National ORCID Consortium - Community Engagement and Support (A. ...Launching a National ORCID Consortium - Community Engagement and Support (A. ...
Launching a National ORCID Consortium - Community Engagement and Support (A. ...
 
ORCID_Spain_20130906
ORCID_Spain_20130906ORCID_Spain_20130906
ORCID_Spain_20130906
 
ORCID Tech Intro - California Digital Libraries
ORCID Tech Intro - California Digital LibrariesORCID Tech Intro - California Digital Libraries
ORCID Tech Intro - California Digital Libraries
 

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
 
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
 
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
 
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
 
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
 
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
 
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 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
 
Convey ORCID Integration Presentation (Heather Pierce)
Convey ORCID Integration Presentation (Heather Pierce)Convey ORCID Integration Presentation (Heather Pierce)
Convey ORCID Integration Presentation (Heather Pierce)ORCID, Inc
 
ORCID and Peer Review in EJPress (Anna Jester)
ORCID and Peer Review in EJPress (Anna Jester)ORCID and Peer Review in EJPress (Anna Jester)
ORCID and Peer Review in EJPress (Anna Jester)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 ...
 
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)
 
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)
 
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 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 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)
 
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 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...
 
Convey ORCID Integration Presentation (Heather Pierce)
Convey ORCID Integration Presentation (Heather Pierce)Convey ORCID Integration Presentation (Heather Pierce)
Convey ORCID Integration Presentation (Heather Pierce)
 
ORCID and Peer Review in EJPress (Anna Jester)
ORCID and Peer Review in EJPress (Anna Jester)ORCID and Peer Review in EJPress (Anna Jester)
ORCID and Peer Review in EJPress (Anna Jester)
 

Recently uploaded

The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Principled Technologies
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 

Recently uploaded (20)

The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 

ORCID Collect and Connect Program (A. Meadows)

  • 1. 16 February 2016 orcid.org 1 OurVision ORCID’s vision is a world where all researchers are uniquely identified and connected to their contributions across time, disciplines, and borders.
  • 2. ORCID at three 16 February 2016 orcid.org 2 Sustain: build toward financial sustainability Lead: enable community conversations Mature: ensure infrastructure supports scalability
  • 3. 16 February 2016 orcid.org 3 2 million researchers have registered for an ORCID identifier.
  • 4. 4 Organizations are collecting ORCID iDs and connecting them to identifiers for people, places, and things ORCID enables assertions
  • 5. orcid.org Collect & Connect ORCID Outreach Meeting Canberra, February 16 2016 Alice Meadows Director of Community Engagement & Support a.meadows@orcid.org orcid.org/0000-0003-2161-3781 @alicejmeadows
  • 6. 16 February 2016 orcid.org 6 Research infrastructure aka plumbing
  • 7. 16 February 2016 orcid.org 7Both commons.wikimedia.org
  • 8. 16 February 2016 orcid.org 8Chinese lion Royalty Free Stock Photos
  • 9. 16 February 2016 orcid.org 9
  • 10. orcid.org/about/team Community Engagement & Support Catalina Wilmers San Francisco, USA Cheryl Sethate Gaborone, Botswana Alice Meadows Boston, USA Ana Patricia Cardoso Mexico City, Mexico Alainna Therese Wrigley Hong Kong
  • 11. 16 February 2016 orcid.org 11 “Good developers know how things work. Great developers know why things work.” Steve Souders, Head Performance Engineer, Google
  • 12. Collect & Connect goals •  Clarify goals and expectations across sectors •  Standardize and improve the user experience •  Improve trust in connections between ORCID and other identifiers •  Increase efficiency and quality of integrations •  Help ensure ORCID sustainability through a community approach 16 February 2016 orcid.org 12
  • 13. Integrations by region 16 February 2016 orcid.org 13 APAC 13% EUR 58% LAM 0% MEA 1% NA 28%
  • 14. Integrations by sector 16 February 2016 orcid.org 14 Association 8% Funder 4% Publisher 15% Repository 12% Research Institution 61%
  • 15. Collect & Connect 16 February 2016 orcid.org 15 Collect Display Connect Sync Authenticate!
  • 16. 16 February 2016 orcid.org 16
  • 17. Collect Research institutions: iDs for faculty and students Funders: iDs at grant submission and review Publishers/Repositories: iDs for authors, reviewers, contributors 16 February 2016 orcid.org 17
  • 18. Display Research institutions: in faculty profiles, with works Funders: with awards Publishers: with works 16 February 2016 orcid.org 18
  • 19. Connect Research institutions: with IDs for affiliations Funders: with IDs for grants Publishers: with IDs for papers, datasets, reviews 16 February 2016 orcid.org 19
  • 20. Sync All: sync updates All: authenticate 16 February 2016 orcid.org 20
  • 21. Next steps… •  Map existing integrations •  Document best practices and use cases •  Update members.orcid.org •  Create resources and collateral •  ORCID engagement campaign 16 February 2016 orcid.org 21
  • 22. 16 February 2016 orcid.org 22www.mpasa.com.au
  • 23. orcid.org beyond what is ORCID... ...using the API 2016 february 15 laura paglione technical director, ORCID L.Paglione@ORCID.org http://orcid.org/0000-0003-3188-6273 Contact Info: p. +1-301-500-2139 a. 10411 Motor City Drive, Suite 750, Bethesda, MD 20817 USA
  • 24. orcid.org 24 the other stuff that has to happen •  communications •  rollout timing •  evangelism – encouraging use ...can be much harder & more time consuming than using the API let’s not get ahead of ourselves... PHOTO: 3/2 nuts © M.G. Kafkas https://flic.kr/p/4XytpS
  • 25. orcid.org basic API flow ORCID Record Yes! Do you have permission to do what you want to do? Get the permission; store iD and “token” Read the record or update the record No OAuth
  • 26. orcid.org 26 API (Application Programming Interface) – interface that lets one software program “talk” with another, exchanging data behind the scenes. An ad, but good basic info about what an API can do: http://paidpost.nytimes.com/ca-technologies/apis-the-building- blocks-of-the-app-economy.html what is an API? PHOTO: 3/2 nuts © M.G. Kafkas https://flic.kr/p/4XytpS
  • 27. orcid.org 27 •  permissions / scopes – your contract with the user •  the ORCID messages – format of the data exchanged •  OAuth calls – the permission protocol – how you “execute the contract” •  ORCID-specific calls – providing receiving information with the registry the ORCID API in a nutshell PHOTO: 3/2 nuts © M.G. Kafkas https://flic.kr/p/4XytpS
  • 28. PHOTO: electronic circuit board www.flickr.com/photos/creative_stock/5227842611 explaining scopes / permissions orcid.org ORCID registry depends on user-based permissions: Can I... •  have your iD (/authenticate) •  interact with the activities on your record •  read (/activities/read) •  update (/activities/update) •  interact with your biographical information •  read (/person/read) •  update (/person/update)
  • 29. what a message looks like orcid.org
  • 30. PHOTO: electronic circuit board www.flickr.com/photos/creative_stock/5227842611 the OAuth calls – part 1 orcid.org Initiate the process – Send the user to a “fancy” URL https://orcid.org/oauth/authorize? client_id=0000-0002-3003-7862 response_type=code scope=/activities/read-limited%20/activities/update redirect_uri=https://my.URL.org family_names=Paglionegiven_names=Lauraemail=l.paglione %2B2014@orcid.orgorcid=0000-0001-6356-0580 The base URL – displays the screen who’s asking? what permission? where the user goes next Personalize the experience
  • 31. PHOTO: electronic circuit board www.flickr.com/photos/creative_stock/5227842611 what the user sees orcid.org
  • 32. PHOTO: electronic circuit board www.flickr.com/photos/creative_stock/5227842611 the OAuth calls – part 2 orcid.org ORCID sends the user to your redirect, with a code https://my.URL.org?htA3yE you... •  save the code – you need it for the next step •  display something useful to the user •  Authorize: thanks for your permission! •  Deny: are you sure you don’t want to give permission? The magic code
  • 33. PHOTO: electronic circuit board www.flickr.com/photos/creative_stock/5227842611 the OAuth calls – part 3a: the call orcid.org use the code to gain access using the ORCID API https://api.orcid.org/oauth/token HEADER: accept:application/json DATA: client_id=0000-0002-3003-7862 client_secret=f6ffa224-dc28-4c51-8c9e-ae4b86f61bc3 grant_type=authorization_code code=htA3yE redirect_uri=https%3A%2F%2Fmy.URL.org our API calls always looks like URLs (RESTful) what format? The magic code confirming that you are the right one to get this information
  • 34. PHOTO: electronic circuit board www.flickr.com/photos/creative_stock/5227842611 the OAuth calls – part 3b: the result orcid.org the result of the call access_token” : 6710dfee-6aab-445b-a266-205dd9085273, token_type” : bearer, expires_in” : 631138518, scope” : /activities/read-limited /activities/update, orcid” : 0000-0001-6356-0580, name” : Laura Paglione” store the access token and iD when permission expires (in seconds) your permission – executed contract iD name for the person who gave permission What you can do
  • 35. PHOTO: electronic circuit board www.flickr.com/photos/creative_stock/5227842611 ORCID-specific calls orcid.org •  Read data: GET •  Add data: POST •  Update data: PUT BASE URL: https://api.orcid.org/0000-0000-0000-0000 HEADERS: accept:application/json (reading) content-type:application/json (adding /updating) Authorization: Bearer 6710dfee-6aab-445b-a266-205dd9085273 DATA (if adding or updating): the file location=@file_location_name Modifiers: /works /update data format Access token from before
  • 36. PHOTO: electronic circuit board www.flickr.com/photos/creative_stock/5227842611 but wait... there’s more orcid.org •  Error handling •  API updates •  about 1x/year •  supported versions •  release candidates •  deprecated versions
  • 37. resources PHOTO: Stairway to somewhere © Jonathan Fenton https://flic.kr/p/7Guxgu member resources (includes planning communication resources) http://members.orcid.org API documentation http://members.orcid.org/api getting authenticated ORCID iDs http://members.orcid.org/api/tutorial-retrieve-orcid-id-curl-v12-and-earlier vendors that support ORCID iDs http://members.orcid.org/publisher-tools getting help at ORCID http://orcid.org/help/contact-us •  •  •  •  •