개발자 문서
플랫폼
공식 확인 상태와 규격
표는 채널 레지스트리를 읽습니다. 공식 확인 전인 숫자는 공개하지 않습니다. API 사용 중에는 GET /api/v1/platforms로 최신 상태를 확인해 주세요.
| 채널 | 상태 | 공식 규격 | 안내 |
|---|---|---|---|
| 준비 중 | 확인 중 | 비즈니스·크리에이터 계정 | |
| Threads | 준비 중 | 확인 중 | 주제 태그 1개 |
| 준비 중 | 확인 중 | 페이지에 발행 | |
| TikTok | 준비 중 | 확인 중 | Content Posting API 감사 필요 |
| YouTube | 준비 중 | 확인 중 | 제목 필수 |
| Telegram | 준비 중 | 확인 중 | 봇 토큰으로 연결 |
| Bluesky | 준비 중 | 확인 중 | 앱 비밀번호로 연결 |
채널 상태 조회 요청
curl -H 'Authorization: Bearer <API_KEY>' \
-H 'X-Workspace-Id: <WORKSPACE_ID>' \
'https://<서비스-도메인>/api/v1/platforms'현재 채널 상태 응답 예시
{
"platforms": [
{
"platform": "instagram",
"label": "Instagram",
"status": "soon",
"verified": false,
"limits": null,
"note": "비즈니스·크리에이터 계정"
},
{
"platform": "threads",
"label": "Threads",
"status": "soon",
"verified": false,
"limits": null,
"note": "주제 태그 1개"
},
{
"platform": "facebook",
"label": "Facebook",
"status": "soon",
"verified": false,
"limits": null,
"note": "페이지에 발행"
},
{
"platform": "tiktok",
"label": "TikTok",
"status": "soon",
"verified": false,
"limits": null,
"note": "Content Posting API 감사 필요"
},
{
"platform": "youtube",
"label": "YouTube",
"status": "soon",
"verified": false,
"limits": null,
"note": "제목 필수"
},
{
"platform": "telegram",
"label": "Telegram",
"status": "soon",
"verified": false,
"limits": null,
"note": "봇 토큰으로 연결"
},
{
"platform": "bluesky",
"label": "Bluesky",
"status": "soon",
"verified": false,
"limits": null,
"note": "앱 비밀번호로 연결"
}
]
}