setFriendInfo

功能介绍

设置指定好友资料

首先要在 控制台 (功能配置 -> 好友自定义字段) 配置好友自定义字段, 然后再调用该接口进行设置,key 值不需要加 TagSNS_Custom 前缀。

参数详解

参数名称 参数类型 是否必填 描述
userID string 需要修改的用户id
friendRemark string 修改的好友备注
friendCustomInfo StringMap 修改的好友自定义信息

返回模板

V2TimCallback

{
    code : number
    desc : string
}

返回值详解

名称 数值类型 描述
code number 请求结果错误码
desc string 请求结果描述符

代码示例

import { TencentImSDKPlugin } from 'react-native-tim-js';

//设置指定好友资料
const setFriendInfoRes = await TencentImSDKPlugin.v2TIMManager
    .getFriendshipManager()
    .setFriendInfo(
        'userID', //需要修改的用户id
        'friendRemark', //修改的好友备注
        { custom: 'custom' } //修改的好友自定义信息
    );
if (setFriendInfoRes.code === 0) {
    // 修改成功
}

results matching ""

    No results matching ""