I have an ORCID number but my institution is not a "member". I'm editing Proceedings where each author has supplied eir ORCID numbers and I would like to check that these are correct. Instead of typing about 60 names into the www.orcid.org search interface, is there some way to do this through an API? (I can program in Perl, Python, PHP.)
Get the name attached to an ORCID ID through some API without Institution credentials
182 Views Asked by yannis At
1
There are 1 best solutions below
Related Questions in ORCID
- ORCID API - how to get coauthor/collaborator information?
- Formatting author names with orcid and affiliations in RMarkdown
- Logo and ORCID in Quarto Book
- Extracting credentials from ORCID seach with ORCID id using python
- Download h-index time series from Scopus or Orcid
- Get the name attached to an ORCID ID through some API without Institution credentials
- Using ORCiD as an identity provider with keycloak (does everyone get the error: Numeric value (2225265999) out of range of int)
- Extract data from ORCID XML files using Python
- Error 301 when try to get the ORCID record
- Getting a person's ORCID using the ORCID API
- Log in to my Application via Identity Server using ORCID Credentials
- Is there any Spring Social client module for ORCID?
- make call to ORCID public api using node js
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Actually it was easier than I thought. All you need is to use the URL
http://orcid.org/0000-0000-0000-0000with the ORCID ID instead of the zeros, and you receive a file containing the name of the owner of that ID.Here is Perl code to do it (
$ORCIDcontains the ID for which we seek the owner):