refuseFriendApplication
功能介绍
拒绝好友申请
参数详解
返回模板
V2TimValueCallback<V2TimFriendOperationResult>
{
code : number
desc : string
data : {
resultCode : number
resultInfo : string
userID : string
}
}
返回值详解
代码示例
import { TencentImSDKPlugin } from 'react-native-tim-js';
const getFriendApplicationListRes = await TencentImSDKPlugin.v2TIMManager
.getFriendshipManager()
.getFriendApplicationList();
if (getFriendApplicationListRes.code === 0) {
getFriendApplicationListRes.data?.unReadCount;
getFriendApplicationListRes.data?.friendApplicationList?.forEach(
(element) => {
const refuseFriendApplicationRes =
await TencentImSDKPlugin.v2TIMManager
.getFriendshipManager()
.refuseFriendApplication(
element!.type,
'userID'
);
if (refuseFriendApplicationRes.code === 0) {
refuseFriendApplicationRes.data?.resultCode;
refuseFriendApplicationRes.data?.resultInfo;
refuseFriendApplicationRes.data?.userID;
}
}
);
}