添加群应用,只有管理员和群主能添加群应用。建议先调用 qq.getGroupInfo 判断当前用户是否为管理员,如果是管理员再调用该接口。基础库1.16.0开始支持。
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
object.success 回调函数
参数
Object res
属性 | 类型 | 说明 |
---|---|---|
errMsg | string | 添加成功的提示信息 |
object.fail 回调函数
参数
Object res
属性 | 类型 | 说明 |
---|---|---|
errCode | number | 错误码 |
errMsg | string | 错误信息 |
错误码
errCode | errMsg | 说明 |
---|---|---|
41004 | not group manager | 不是群主或管理员,注意:41004错误码安卓848版本开始支持 |
41005 | 超过可设置数量 |
// 添加群应用
qq.addGroupApp({
success(res) {
console.log('addGroupApp success: ', res);
},
fail(res) {
console.log('addGroupApp fail: ', res);
},
complete(res){
console.log('addGroupApp complete: ', res);
}
});