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

type 1 일반적인 텍스트

andyyeyeye edited this page Feb 16, 2021 · 3 revisions

일반적인 텍스트

await chat.channel.sendChat("메시지",None,71) 

다른 사람 태그하기

attachment = {'mentions': [{'user_id': authorId, 'at': [1], 'len': 2}]}
await chat.channel.sendChat("@태그",json.dumps(attachment),1) #@테그는 어차피 가려짐

url 첨부하기

attachment = {'urls': ['https://google.com']}
await chat.channel.sendChat('https://google.com',json.dumps(attachment),1)
Clone this wiki locally