단계 5(5개 중)
5. 읽기 ORCID 기록(GET)
에 대한 정보를 작성하고 업데이트한 후 ORCID 레코드, 이제 GET 메서드를 사용하여 해당 레코드에 있는 모든 요약을 읽을 시간입니다.
이 마지막 단계에서 우리는 ORCID 이전에 추가하고 업데이트한 레코드입니다. 이를 위해 GET 메서드를 사용하고 레코드 요약의 XML을 수신합니다.
Google Developers OAuth2 Playground의 브라우저 탭으로 돌아갑니다. 탭을 열어두지 않은 경우 이전에 저장한 URL로 세션을 다시 초기화할 수 있습니다(표시되는 경고에서 확인 클릭). 또는 관련 필드를 모두 채우고 아래 스크린샷처럼 보이는지 확인하여 통화를 다시 설정할 수 있습니다.
확인 구성 너의 클라이언트 ID 및 클라이언트 비밀번호
Google Devlopers OAuth 2 플레이그라운드의 2단계에서 귀하는 액세스 토큰 채워
여전히 이전의 토큰이 있어야 하거나 다음과 같이 이전 연습에서 채울 수 있습니다.
Google Devlopers OAuth 3 플레이그라운드의 2단계에서 클릭 헤더 추가, 아래 값을 입력한 다음 추가 하고 닫기
헤더 이름: 수락
헤더 값: 애플리케이션/vnd.orcid+xml
3단계 구성은 아래 스크린샷과 같아야 합니다.
HTTP 메소드를 다음으로 설정하십시오. 바로.
요청 URI 필드에 다음을 입력하십시오.
https://api.sandbox.orcid.org/v3.0/0000-XXXX-XXXX-XXXX/record
바꾸다 [ORCID 아이디]와 iD Sandbox 레코드의 경우 XXXX-XXXX-XXXX-XXXX 형식
참고 : 엔드 포인트 URI 끝에 있는 단어입니다. 이 경우 우리는 읽고 있습니다 개요 위와 같이 /record로 URL을 끝냅니다.
요청 보내기
요청/응답 필드에서 전체 레코드의 XML 요약을 볼 수 있습니다. 이 자습서의 3단계에서 추가한 소속을 포함하여 레코드의 모든 정보가 표시됩니다. 응답의 첫 번째 부분을 보여주는 아래 예와 약간 비슷합니다.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<record:record path="/0000-0003-1481-3160" xmlns:internal="http://www.orcid.org/ns/internal" xmlns:education="http://www.orcid.org/ns/education" xmlns:distinction="http://www.orcid.org/ns/distinction" xmlns:deprecated="http://www.orcid.org/ns/deprecated" xmlns:other-name="http://www.orcid.org/ns/other-name" xmlns:membership="http://www.orcid.org/ns/membership" xmlns:error="http://www.orcid.org/ns/error" xmlns:common="http://www.orcid.org/ns/common" xmlns:record="http://www.orcid.org/ns/record" xmlns:personal-details="http://www.orcid.org/ns/personal-details" xmlns:keyword="http://www.orcid.org/ns/keyword" xmlns:email="http://www.orcid.org/ns/email" xmlns:external-identifier="http://www.orcid.org/ns/external-identifier" xmlns:funding="http://www.orcid.org/ns/funding" xmlns:preferences="http://www.orcid.org/ns/preferences" xmlns:address="http://www.orcid.org/ns/address" xmlns:invited-position="http://www.orcid.org/ns/invited-position" xmlns:work="http://www.orcid.org/ns/work" xmlns:history="http://www.orcid.org/ns/history" xmlns:employment="http://www.orcid.org/ns/employment" xmlns:qualification="http://www.orcid.org/ns/qualification" xmlns:service="http://www.orcid.org/ns/service" xmlns:person="http://www.orcid.org/ns/person" xmlns:activities="http://www.orcid.org/ns/activities" xmlns:researcher-url="http://www.orcid.org/ns/researcher-url" xmlns:peer-review="http://www.orcid.org/ns/peer-review" xmlns:bulk="http://www.orcid.org/ns/bulk" xmlns:research-resource="http://www.orcid.org/ns/research-resource">
<common:orcid-identifier>
<common:uri>https://sandbox.orcid.org/0000-0003-1481-3160</common:uri>
<common:path>0000-0003-1481-3160</common:path>
<common:host>sandbox.orcid.org</common:host>
</common:orcid-identifier>
<preferences:preferences>
<preferences:locale>en</preferences:locale>
</preferences:preferences>
<history:history>
<history:creation-method>Direct</history:creation-method>
<history:submission-date>2017-10-11T08:29:24.481Z</history:submission-date>
<common:last-modified-date>2021-09-14T10:54:02.786Z</common:last-modified-date>
<history:claimed>true</history:claimed>
<history:verified-email>true</history:verified-email>
<history:verified-primary-email>true</history:verified-primary-email>
</history:history>
<person:person path="/0000-0003-1481-3160/person">
<person:name visibility="public" path="0000-0003-1481-3160">
<common:created-date>2017-10-11T08:29:24.481Z</common:created-date>
<common:last-modified-date>2017-10-11T08:29:24.703Z</common:last-modified-date>
<personal-details:given-names>Paula</personal-details:given-names>
<personal-details:family-name>Demain</personal-details:family-name>
</person:name>
<other-name:other-names path="/0000-0003-1481-3160/other-names"/>
<researcher-url:researcher-urls path="/0000-0003-1481-3160/researcher-urls"/>
<email:emails path="/0000-0003-1481-3160/email"/>
<address:addresses path="/0000-0003-1481-3160/address"/>
<keyword:keywords path="/0000-0003-1481-3160/keywords"/>
<external-identifier:external-identifiers path="/0000-0003-1481-3160/external-identifiers"/>
</person:person>
<activities:activities-summary path="/0000-0003-1481-3160/activities">
<common:last-modified-date>2021-09-14T10:53:56.813Z</common:last-modified-date>
<activities:distinctions path="/0000-0003-1481-3160/distinctions"/>
<activities:educations path="/0000-0003-1481-3160/educations">
<common:last-modified-date>2021-09-14T10:53:56.813Z</common:last-modified-date>
<activities:affiliation-group>
<common:last-modified-date>2021-09-14T10:53:56.813Z</common:last-modified-date>
<common:external-ids/>
<education:education-summary put-code="28758" display-index="1" path="/0000-0003-1481-3160/education/28758" visibility="public">
<common:created-date>2017-10-11T08:30:52.610Z</common:created-date>
<common:last-modified-date>2021-09-14T10:53:56.813Z</common:last-modified-date>
<common:source>
<common:source-orcid>
<common:uri>https://sandbox.orcid.org/0000-0003-1481-3160</common:uri>
<common:path>0000-0003-1481-3160</common:path>
<common:host>sandbox.orcid.org</common:host>
</common:source-orcid>
<common:source-name>Paula Demain</common:source-name>
</common:source>
<common:organization>
<common:name>ORCID</common:name>
<common:address>
<common:city>Bethesda</common:city>
<common:region>MD</common:region>
<common:country>US</common:country>
</common:address>
<common:disambiguated-organization>
<common:disambiguated-organization-identifier>385488</common:disambiguated-organization-identifier>