RemoteMonster Documents
Homepage
Blog
Community
About Us
Search…
v2.x
RemoteMonster
Overview
Flow
Structure
Examples
Features
Spec
Web
Web - Overview
Web - Getting Started
Web - Media
Web - Debug Inside
Web - Github
Web - SDK Reference
Android
Android - Overview
Android - Getting Started
Android - Media
Android - ProGuard
Android - Github
Android - SDK Reference
iOS
iOS - Overview
iOS - Getting Started
iOS - Media
iOS - Github
iOS - SDK Reference
api
Webhook API - Livecast - beta
Managing Channels
Common
Service Key
Config/RemonConfig
Livecast
Communication
Callbacks
Channel
Channel ID 규칙
Network Environment
Studio Environment
Media
Simulcast
Record - beta
Error
About WebRTC
FAQ
그룹통화
그룹통화 만들기(Android)
그룹통화 만들기(iOS)
그룹통화 만들기(Web)
튜토리얼 - 통화
통화 5 분 안에 시작하기
통화 키 발급
새 통화 프로젝트 설정 - Web
단순 통화 앱 만들기 - Web
튜토리얼 - 방송
방송 5 분 안에 시작하기
방송 키 발급
새 방송 프로젝트 설정 - Web
단순 시청 앱 만들기 - Web
Powered By
GitBook
Managing Channels
리모트몬스터는 채널 관리를 위한 서버용 API를 제공합니다. 이 API는 채널 검색, 채널 강제 종료 기능을 제공합니다. 서버용 API는 앱용(클라이언트용) API와 달리 비디오/오디오를 전송할 수 없습니다.
※ 주의 사항
타인의 Service ID, Secret Key를 무단으로 이용하면 처벌을 받을 수 있습니다. (정보통신망 이용 촉진 및 정보보호에 관한 법률, 통신비밀보호법, 형법 등에 의거)
타인의 Service ID, Secret Key를 무단으로 이용하면 업무 방해에 대한 피해를 보상해야합니다. (민법 등에 의거)
Service ID, Secret Key 확인
리모트몬스터 웹 콘솔
의 Project Information 메뉴에서 Service ID, Secret Key를 확인할 수 있습니다. Secret Key는 ************** 이 아닙니다. 우측 눈 아이콘을 누르면 표시됩니다.
웹 콘솔의 프로젝트 기본정보 화면
채널 검색
post
https://signal.remotemonster.com/lambda/broadcast-channel-list
https://consoleapi.remotemonster.com/v1/search
예시
curl
1
curl
-X POST https://consoleapi.remotemonster.com/v1/search
\
2
-H
'Content-type: application/json'
\
3
-d
'
4
{
5
"serviceId": "my-service-id",
6
"secret":"my-secret",
7
"keyword" : "",
8
"starttime": 1581315000,
9
"endtime": 1581315900
10
}
11
'
Copied!
방송 중인 채널 조회
post
https://signal.remotemonster.com/lambda/broadcast-channel-list
https://signal.remotemonster.com/lambda/broadcast-channel-list
예시
curl
1
curl
-X POST
'https://signal.remotemonster.com/lambda/broadcast-channel-list'
\
2
-H
'Content-type: application/json'
\
3
-d
'{"serviceId":"my-service-id","secret":"my-secret-key"}'
Copied!
채널 강제 종료
post
https://signal.remotemonster.com/lambda/channel-force-termination
https://signal.remotemonster.com/lambda/channel-force-termination
예시
curl
1
curl
-X POST https://signal.remotemonster.com/lambda/channel-force-termination
\
2
-H
'Content-type: application/json'
\
3
-d
'{"serviceId":"my-service-id", "secret":"my-secret-key", "channelId":"the-channel-id"}'
Copied!
api - Previous
Webhook API - Livecast - beta
Next - Common
Service Key
Last modified
1yr ago
Copy link
Contents
※ 주의 사항
Service ID, Secret Key 확인
채널 검색
post
https://consoleapi.remotemonster.com/v1/search
예시
방송 중인 채널 조회
post
https://signal.remotemonster.com/lambda/broadcast-channel-list
예시
채널 강제 종료
post
https://signal.remotemonster.com/lambda/channel-force-termination
예시