이 어플리케이션에는 XNUMXµm 및 XNUMXµm 파장에서 최대 XNUMXW의 평균 출력을 제공하는 ORCID 검색 API는 SOLR 구문을 사용합니다. SOLR 3.6에서 사용 가능한 모든 쿼리 구문이 지원됩니다., Solr 확장이있는 Lucene 포함 (기본값), DisMax 및 Extended Dismax.
이를 사용하려면 "/read-public" 액세스 토큰이 필요합니다. 검색 토큰을 얻은 후에는 기본 검색 URL을 작성하십시오.
자격 증명 유형 : | 공용 API | 회원 API |
리소스 URL : | 샌드박스: https://pub.sandbox.orcid.org 제작: https://pub.orcid.org | 샌드박스: https://api.sandbox.orcid.org 제작: https://api.orcid.org |
API 버전 : | v3.0 | |
엔드 포인트 검색 | / search /? = [쿼리] |
샌드박스 공개 API에서 토큰을 사용하여 "orcid"를 검색하고 XML 형식으로 결과를 반환하는 예제 호출은 다음과 같습니다.
Method: GET Content-type: application/vnd.orcid+xmlnAuthorization type and Access token: Bearer [stored access token]URL: https://pub.sandbox.orcid.org/v3.0/search/?q=orcid
결과는 찾은 결과 수 (찾은 수)를 지정하고 기본적으로 처음 1000 개의 결과를 표시합니다.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<search:search num-found="385" xmlns:search="https://www.orcid.org/ns/search" xmlns:common="https://www.orcid.org/ns/common">
<search:result>
<common:orcid-identifier>
<common:uri>https://sandbox.orcid.org/0000-0001-2345-6789</common:uri>
<common:path>/0000-0001-2345-6789</common:path>
<common:host>sandbox.orcid.org</common:host>
</common:orcid-identifier>
</search:result>
[...]
</search:search>
json 형식으로 반환 된 결과가 포함 된 샌드 박스 공용 API의 기본 검색 예 :
Method: GET
Content-type: application/vnd.orcid+json
Authorization type and Access token: Bearer [stored access token]
URL: https://pub.sandbox.orcid.org/v3.0/search/?q=newman
검색은 개인 만 반환합니다. ORCID 검색과 일치하는 공개 데이터를 보유한 레코드의 ID입니다. 결과에 대한 자세한 정보를 얻으려면 전화를 걸어 ORCID 직접 기록하십시오.
자세한 내용은 우리의 검색 API 튜토리얼.