색인미확인수명주기 미확인품질 미측정구조화 한국어 안내 · 문장 번역 전

drchrono.com

drchrono.com에서 제공하는 문서·기록 분야의 API 제품입니다. 확인된 분류 신호는 검색·조회, OCR·텍스트 추출, 결제·청구, 인증·계정입니다.

영문 원문 보기
drchrono.com

This document is intended as a detailed reference for the precise behavior of the drchrono API. If this is your first time using the API, start with our tutorial . If you are upgrading from a previous version, take a look at the changelog section. Authorization Initial authorization There are three main steps in the OAuth 2.0 authentication workflow: 1. Redirect the provider to the authorization page. 2. The provider authorizes your application and is redirected back to your web application. 3. Your application exchanges the authorization code that came with the redirect for an access token and refresh token . Step 1: Redirect to drchrono The first step is redirecting your user to drchrono, typically with a button labeled "Connect to drchrono" or "Login with drchrono". This is just a link that takes your user to the following URL: https://drchrono.com/o/authorize/?redirect uri=REDIRECT URI ENCODED&response type=code&client id=CLIENT ID ENCODED&scope=SCOPES ENCODED - REDIRECT URI ENCODED is the URL-encoded version of the redirect URI (as registered for your application and used in later steps). - CLIENT ID ENCODED is the URL-encoded version of your application's client ID. - SCOPES ENCODED is a URL-encoded version of a space-separated list of scopes, which can be found in each endpoint or omitted to default to all scopes. The scope parameter consists of an optional, space-separated list of scopes your application is requesting. If omitted, all scopes will be requested. Scopes are of the form BASE SCOPE:[read write] where BASE SCOPE is any of user , calendar , patients , patients:summary , billing , clinical and labs . You should request only the scopes you need. For instance, an application which sends "Happy Birthday!" emails to a doctor's patients on their birthdays would use the scope parameter "patients:summary:read" , while one that allows patients to schedule appointments online would need at least "patients:summary:read patients:summary:write calendar:read calendar:write clinical:read clinical:write" . Step 2: Provider authorization After logging in (if necessary), the provider will be presented with a screen with your application's name and the list of permissions you requested (via the scope parameter). When they click the "Authorize" button, they will be redirected to your redirect URI with a code query parameter appended, which contains an authorization code to be used in step 3. If they click the "Cancel" button, they will be redirected to your redirect URI with error=access denied instead. Note: This authorization code expires extremely quickly, so you must perform step 3 immediately, ideally before rendering the resulting page for the end user. Step 3: Token exchange The code obtained from step 2 is usable exactly once to obtain an access token and refresh token. Here is an example token exchange in Python: import datetime, pytz, requests if 'error' in get params: raise ValueError('Error authorizing application: %s' % get params[error]) response = requests.post('https://drchrono.com/o/token/', data={ 'code': get params['code'], 'grant type': 'authorization code', 'redirect uri': 'http://mytestapp.com/redirect uri', 'client id': 'abcdefg12345', 'client secret': 'abcdefg12345', }) response.raise for status() data = response.json() Save these in your database associated with the user access token = data['access token'] refresh token = data['refresh token'] expires timestamp = datetime.datetime.now(pytz.utc) + datetime.timedelta(seconds=data['expires in']) You now have all you need to make API requests authenticated as that provider. When using this access token, you'll only be able to access the data that the user has access to and that you have been granted permissions for. Refreshing an access token Access tokens only last 48 hours (given in seconds in the 'expires in' key in the token exchange step above), so they occasionally need to be refreshed. It would be inconvenient to ask the user to re-authorize every ti…

번역은 이해를 돕기 위한 미검수 초벌 또는 구조화 안내입니다. 계약·의료·법률 판단에는 원문을 확인하세요.
연결된 문서
전역 집계 전현재 별표는 이 브라우저에만 저장
종합 품질근거 0%
가격미확인상세 가격 미수집
인증미확인
프로토콜REST263개 엔드포인트 수집
마지막 확인2026. 7. 28.출처 확인됨

SELECTION SUMMARY

도입 판단 요약

이 항목은 문서·기록 카테고리로 분류된 API 제품입니다. 확인된 분류 신호는 검색·조회, OCR·텍스트 추출, 결제·청구, 인증·계정입니다. 상세 문장 번역은 아직 검수되지 않았으므로 아래 원문을 함께 확인하세요.

검수된 적합 용도

검증 정보 없음 — 태그와 카테고리는 분류 정보이며 적합성 보증이 아닙니다.

도입 전 확인

인증, 호출 제한, 데이터 처리 지역과 가격 조건을 연결된 문서에서 직접 확인하세요.

피해야 할 조건

제품별 제한 조건이 검수되지 않았습니다. 운영 적용 전에 공급자 조건을 재확인하세요.

EVIDENCED ADVANTAGES

API 특·장점

공급자·카탈로그·실측·편집 근거가 있는 신호만 표시하며, 근거 유형을 함께 밝힙니다.

카탈로그출처가 확인된 제품

카탈로그 원본과 확인 시점이 연결되어 있습니다.

공급자OpenAPI 3.0.0

정규화된 엔드포인트 263개를 탐색할 수 있습니다.

CATALOG TRUST

색인0

재배포 정책과 기본 식별 조건을 통과해 검색할 수 있지만 편집 승인은 아직 완료되지 않았습니다.

평가 2026. 07. 28. 13:05

QUALITY COVERAGE

미측정종합 점수
근거 충족률 0% · 신뢰 0%

unrated

핵심 도입 정보

인증검증 정보 없음
프로토콜REST
가격 모델미확인
리전검증 정보 없음
수집된 엔드포인트263개
마지막 확인2026. 07. 28. 13:05

같은 목적의 대체 API

같은 카테고리에서 공개 상태와 품질 근거를 우선해 표시합니다.