Skip to content

Contact

字数
221 字
阅读时间
1 分钟

contact 为联系人对象,用于描述联系人信息

属性

contact类型必须描述
scenestring暂时没有意向支持除群和好友以外的场景
peerstring好友QQ号/群号/频道
sub_peerstring子频道id 非频道场景与peer一致或不存在

以下为scene的标准值

scene描述
group
friend好友
guild频道
nearby附近的人
stranger陌生人
stranger_from_group群临时会话

快速构建方法

javascript
const contact = karin.contactGroup('123455678') // 群
const contact = karin.contactFriend('123455678') // 好友

示例

  • 在收到事件时,此属性必须存在
  • 此属性在调用大多数API时都会用到
js
// 一个简单的例子,回复消息
import { 
karin
,
segment
,
Bot
} from 'node-karin'
const
self_id
= 123456789
const
contact
=
karin
.
contactGroup
('123455678')
await
Bot
.
sendMsg
(
self_id
,
contact
, '这只一条主动消息')
解决方案
适配器
其他
2024 KarinJS. All Rights Reserved.