Skip to content
This repository has been archived by the owner on Nov 20, 2022. It is now read-only.

type 51 보이스톡 페이스톡

andyyeyeye edited this page Feb 16, 2021 · 1 revision

보이스톡 걸기

attachment = {'type': 'invite', 'csIP': '', 'csIP6': '', 'csPort': 9000, 'callId': '', 'duration': 0}
message = {'type': 'invite', 'csIP': '', 'csIP6': '', 'csPort': 9000, 'callId': '', 'duration': 0}
await chat.channel.sendChat(json.dumps(message),json.dumps(attachment),51)

보이스톡 끊기

attachment = {'type': 'cancel', 'csIP': '', 'csIP6': '', 'csPort': 9000, 'callId': '', 'duration': 0}
message = {'type': 'cancel', 'csIP': '', 'csIP6': '', 'csPort': 9000, 'callId': '', 'duration': 0}
await chat.channel.sendChat(json.dumps(message),json.dumps(attachment),51)

페이스톡 걸기

attachment = {'type': 'v_invite', 'csIP': '', 'csIP6': '', 'csPort': 9000, 'callId': '', 'duration': 0}
message = {'type': 'v_invite', 'csIP': '', 'csIP6': '', 'csPort': 9000, 'callId': '', 'duration': 0}
await chat.channel.sendChat(json.dumps(message),json.dumps(attachment),51)

페이스톡 끊기

attachment = {'type': 'v_cancel', 'csIP': '', 'csIP6': '', 'csPort': 9000, 'callId': '', 'duration': 0}
message = {'type': 'v_cancel', 'csIP': '', 'csIP6': '', 'csPort': 9000, 'callId': '', 'duration': 0}
await chat.channel.sendChat(json.dumps(message),json.dumps(attachment),51)
Clone this wiki locally