refuseGroupApplication
功能介绍
拒绝某一条加群申请
参数详解
参数名称 |
参数类型 |
是否必填 |
描述 |
groupID |
string |
是 |
加入的群组id |
reason |
string |
否 |
拒绝原因 |
fromUser |
string |
是 |
请求者id |
toUser |
string |
是 |
判决者id |
addTime |
number |
否 |
申请时间 |
type |
GroupApplicationTypeEnum |
否 |
申请类型 |
返回模板
V2TimCallback
{
code : number
desc : string
}
返回值详解
名称 |
数值类型 |
描述 |
code |
number |
请求结果错误码 |
desc |
string |
请求结果描述符 |
代码示例
import { TencentImSDKPlugin } from 'react-native-tim-js';
const getGroupApplicationListRes = await TencentImSDKPlugin.v2TIMManager
.getGroupManager()
.getGroupApplicationList();
if (getGroupApplicationListRes.code === 0) {
getGroupApplicationListRes.data?.groupApplicationList?.forEach(
async (element) => {
if (element != null) {
const refuseGroupApplicationRes =
await TencentImSDKPlugin.v2TIMManager
.getGroupManager()
.refuseGroupApplication(
element.groupID,
element.fromUser!,
element.toUser!,
element.type,
element.addTime!,
'reason'
);
if (refuseGroupApplicationRes.code === 0) {
}
}
}
);
}