Skip to content

Commit

Permalink
Modify the Title Format Client API of Getting Contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
haoxiuwen committed Dec 7, 2023
1 parent 9bb1589 commit 30f25e9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions docs/document/android/user_relationship.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ EMClient.getInstance().contactManager().asyncSetContactRemark(userId, remark, ne

#### 获取好友列表

##### 从服务端获取好友列表
##### **从服务端获取好友列表**

自 4.2.1 版本开始,你可以调用 `asyncFetchAllContactsFromServer` 方法从服务器一次性或分页获取好友列表,其中每个好友对象包含好友的用户 ID 和好友备注。

Expand Down Expand Up @@ -183,7 +183,7 @@ private void doAsyncFetchAllContactsFromServer(List<EMContact> contacts, String
List<String> usernames = EMClient.getInstance().contactManager().getAllContactsFromServer();
```

##### 从本地获取好友列表
##### **从本地获取好友列表**

4.2.1 版本开始,你可以调用 `asyncFetchAllContactsFromServer` 方法从本地获取单个好友的用户 ID 和好友备注;你也可以调用 `asyncFetchAllContactsFromLocal` 方法一次性获取整个好友列表,其中每个好友对象包含好友的用户 ID 和好友备注。

Expand Down
6 changes: 3 additions & 3 deletions docs/document/ios/releasenote.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
### 新增特性

- [IM SDK] 新增[设置好友备注功能](user_relationship.html#设置好友备注)
- [IM SDK] 新增 `getAllContactsFromServerWithCompletion``getContactsFromServerWithCursor` 方法分别[从服务器一次性和分页获取好友列表](user_relationship.html#获取好友列表),每个好友对象包含好友的用户 ID 和好友备注。
- [IM SDK] 新增 `getContact` 方法[从本地获取单个好友的用户 ID 和好友备注](user_relationship.html#获取好友列表)
- [IM SDK] 新增 `getAllContacts` 方法[从本地分页获取好友列表](user_relationship.html#获取好友列表),每个好友对象包含好友的用户 ID 和好友备注。
- [IM SDK] 新增 `getAllContactsFromServerWithCompletion``getContactsFromServerWithCursor` 方法分别[从服务器一次性和分页获取好友列表](user_relationship.html#从服务端获取好友列表),每个好友对象包含好友的用户 ID 和好友备注。
- [IM SDK] 新增 `getContact` 方法[从本地获取单个好友的用户 ID 和好友备注](user_relationship.html#从本地获取好友列表)
- [IM SDK] 新增 `getAllContacts` 方法[从本地分页获取好友列表](user_relationship.html#从本地获取好友列表),每个好友对象包含好友的用户 ID 和好友备注。
- [IM SDK] 新增 `EMChatMessage#broadcast` 属性用于判断通过该消息是否为聊天室全局广播消息。可通过[调用 REST API 发送聊天室全局广播消息](/document/server-side/message_chatroom.html#发送聊天室全局广播消息)
- [IM SDK] 新增 `EMGroupManager#getJoinedGroupsCountFromServerWithCompletion` 方法用于[从服务器获取当前用户已加入的群组数量](group_manage.html#查询当前用户已加入的群组数量)
- [IM SDK] 新增[错误码 706](error.html) `EMErrorChatroomOwnerNotAllowLeave`,表示聊天室所有者不允许离开聊天室。若初始化时,`EMOptions#canChatroomOwnerLeave` 参数设置为 `false`,聊天室所有者调用 `leaveChatroom` 方法离开聊天室时会提示该错误。
Expand Down
14 changes: 7 additions & 7 deletions docs/document/ios/user_relationship.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ if (!aError) {
你可以从服务器获取好友列表,也可以从本地获取已保存的好友列表。
1. 从服务端获取好友列表
##### **从服务端获取好友列表**
自 4.2.0 版本开始,你可以调用 `getAllContactsFromServerWithCompletion` 或 `getContactsFromServerWithCursor` 方法从服务器一次性或分页获取好友列表,其中每个好友对象包含好友的用户 ID 和好友备注。
自 4.2.0 版本开始,你可以调用 `getAllContactsFromServerWithCompletion` 或 `getContactsFromServerWithCursor` 方法从服务器一次性或分页获取好友列表,其中每个好友对象包含好友的用户 ID 和好友备注。
- 一次性从服务端获取整个好友列表。
Expand Down Expand Up @@ -188,13 +188,13 @@ if (!aError) {
}];
```

2. 从本地获取好友列表
##### **从本地获取好友列表**

:::notice
需要从服务器获取好友列表之后,才能从本地获取到好友列表。
:::
:::notice
需要从服务器获取好友列表之后,才能从本地获取到好友列表。
:::

自 4.2.0 版本开始,你可以调用 `getContact` 方法从本地获取单个好友的用户 ID 和好友备注;你也可以调用 `getAllContacts` 方法一次性获取整个好友列表,其中每个好友对象包含好友的用户 ID 和好友备注。
自 4.2.0 版本开始,你可以调用 `getContact` 方法从本地获取单个好友的用户 ID 和好友备注;你也可以调用 `getAllContacts` 方法一次性获取整个好友列表,其中每个好友对象包含好友的用户 ID 和好友备注。

- 从本地获取单个好友。

Expand Down
2 changes: 1 addition & 1 deletion docs/document/web/releasenote.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
### 新增特性

- [IM SDK] 新增[设置好友备注功能](user_relationship.html#设置好友备注)
- [IM SDK] 新增 `getAllContacts``getContactsWithCursor` 方法分别用于一次性和分页获取好友列表,其中每个好友对象包含好友的用户 ID 和好友备注。
- [IM SDK] 新增 `getAllContacts``getContactsWithCursor` 方法分别用于[从服务器一次性和分页获取好友列表](user_relationship.html#获取好友列表),其中每个好友对象包含好友的用户 ID 和好友备注。
- [IM SDK] 消息结构新增 `broadcast` 字段, 用于判断该消息是否为聊天室全局广播消息。可通过[调用 REST API 发送聊天室全局广播消息](/document/server-side/message_chatroom.html#发送聊天室全局广播消息)

### 优化
Expand Down

0 comments on commit 30f25e9

Please sign in to comment.