POST
/partner/v1/oauth/token
토큰 발급
client_credentials 또는 refresh_token으로 access_token을 발급합니다. OAuth authorize 리다이렉트는 지원하지 않습니다.
인증
Authorization: Bearer <access_token>
(이후 API 호출)
Request body
grant_type
필수
string
client_credentials 또는 refresh_token
client_id
필수
콘솔에서 발급된 앱 ID
client_secret
필수
승인 후 1회 표시 · 서버만 보관
scope
string · 공백 구분
예: shop:read board:read
관련 · 쇼핑·게시판
- GET /meta/health — 헬스체크
- GET /shop/products — 상품 목록 · shop:read
- POST /shop/orders — 주문 생성 · shop:order:write
- GET /board/posts?board= — 글 목록 · board:read
상세 스키마는 OpenAPI YAML 정본을 사용하세요.
Errors
| 상태 | 의미 |
|---|---|
| 400 | 잘못된 요청 · JSON/필드 |
| 401 | 인증 실패 · client / Bearer |
| 403 | 스코프 부족 |
| 429 | 요청 한도 |