你可以使用此接口对好友信息进行更新。
你可以调用 UpdateFriend
接口,指定你所属的 AppId
、用户 ID 和 好友 ID 更新好友信息。 一次最多支持更新 10 个好友。
关于调用接口的服务地址、通信协议、字符编码和签名机制,参看调用 OpenAPI。
使用 POST 方式发起请求。
参数名 | 类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | UpdateFriend | 接口名称,本接口取值:UpdateFriend |
Version | String | 是 | 2020-12-01 | 接口版本,本接口取值:2020-12-01 |
参数名 | 类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
AppId | Int | 是 | 000000 | 应用的唯一标志 |
UserId | Int | 是 | 10001 | 用户 UserId |
InboxType | Int | 否 | 0 | 信箱,用做逻辑隔离。默认值为 0 |
FriendInfos | Array of FriendInfo | 是 | / | 好友信息 |
FriendInfo
参数名 | 类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
FriendUserId | Int | 是 | 000001 | 好友 UserId |
Ext | Map-key(string)-value(string) | 否 | {"key":"value"} | 好友扩展字段。Ext 与 Alias 为非必填字段,但是至少需要填一个,否则服务端会报错。 |
Alias | String | 否 | Your_Alias | 好友备注 |
https://rtc.volcengineapi.com?Action=UpdateFriend&Version=2020-12-01
{ "AppId":000000, "UserId":10001, "FriendInfos":[ { "FriendUserId":10002, "Ext":{"test":"test"} }, { "FriendUserId":10003, "Ext":{"7778":"777"} } ] }
返回结果参看 BaseResponse。
其中 Result
的结构如下:
参数名 | 类型 | 描述 |
---|---|---|
FailedInfos | Array of FailedInfo | 更新失败的好友信息 |
FailedInfo
参数名 | 类型 | 描述 |
---|---|---|
UserId | Int | 好友 UserId |
Code | String | 错误码 |
Message | String | 错误描述 |
{ "ResponseMetadata": { "RequestId": "Your_RequestId", "Action": "UpdateFriend", "Version": "2020-12-01", "Service": "rtc", "Region": "cn-north-1" }, "Result": { "FailedInfos": [] } }