From 66608878a752839a81f970caab51dcee2b46e071 Mon Sep 17 00:00:00 2001 From: haoxiuwen Date: Thu, 16 Nov 2023 16:14:19 +0800 Subject: [PATCH] modify --- docs/document/android/message_retrieve.md | 4 +--- docs/document/flutter/message_retrieve.md | 4 +--- docs/document/ios/message_retrieve.md | 4 +--- docs/document/react-native/message_manage.md | 4 +--- docs/document/server-side/message_chatroom.md | 2 +- docs/document/unity/message_retrieve.md | 2 +- docs/document/web/message_retrieve.md | 4 +--- docs/document/windows/message_retrieve.md | 2 +- 8 files changed, 8 insertions(+), 18 deletions(-) diff --git a/docs/document/android/message_retrieve.md b/docs/document/android/message_retrieve.md index bf2855e98..815c030cf 100644 --- a/docs/document/android/message_retrieve.md +++ b/docs/document/android/message_retrieve.md @@ -34,9 +34,7 @@ 你可以调用 `asyncFetchConversationsFromServer` 方法从服务端分页获取会话列表,每个会话包含最新一条历史消息。 -SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。若会话中没有消息,则 SDK 按照会话创建时间的倒序返回会话列表。 - -服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 +SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 :::notice 1. 若使用该功能,需将 SDK 升级至 4.0.3。 diff --git a/docs/document/flutter/message_retrieve.md b/docs/document/flutter/message_retrieve.md index e6b9f4053..40ea4d6ac 100644 --- a/docs/document/flutter/message_retrieve.md +++ b/docs/document/flutter/message_retrieve.md @@ -34,9 +34,7 @@ 你可以调用 `fetchConversation` 方法从服务端分页获取会话列表,每个会话包含最新一条历史消息。 -SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。若会话中没有消息,则 SDK 按照会话创建时间的倒序返回会话列表。 - -服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 +SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 :::tip 1. 若使用该功能,需将 SDK 升级至 4.0.0。 diff --git a/docs/document/ios/message_retrieve.md b/docs/document/ios/message_retrieve.md index ea076d5f3..c1701453e 100644 --- a/docs/document/ios/message_retrieve.md +++ b/docs/document/ios/message_retrieve.md @@ -32,9 +32,7 @@ 你可以调用 `getConversationsFromServerWithCursor:pageSize:completion` 方法从服务端分页获取会话列表,每个会话包含最新一条历史消息。 -SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。若会话中没有消息,则 SDK 按照会话创建时间的倒序返回会话列表。 - -服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 +SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 :::notice 1. 若使用该功能,需将 SDK 升级至 4.0.3。 diff --git a/docs/document/react-native/message_manage.md b/docs/document/react-native/message_manage.md index 5e2327c5e..0d8402583 100644 --- a/docs/document/react-native/message_manage.md +++ b/docs/document/react-native/message_manage.md @@ -30,9 +30,7 @@ 你可以调用 `fetchConversationsFromServerWithCursor` 方法从服务端分页获取会话列表,每个会话包含最新一条历史消息。 -SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。若会话中没有消息,则 SDK 按照会话创建时间的倒序返回会话列表。 - -服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 +SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 :::tip 1. 若使用该功能,需将 SDK 升级至 1.2.0。 diff --git a/docs/document/server-side/message_chatroom.md b/docs/document/server-side/message_chatroom.md index 135432b6f..a48aee62f 100644 --- a/docs/document/server-side/message_chatroom.md +++ b/docs/document/server-side/message_chatroom.md @@ -914,7 +914,7 @@ curl -X POST -i 'https://XXXX/XXXX/XXXX/messages/chatrooms' \ 可通过该接口向 app 下的所有活跃聊天室(聊天室至少存在一个成员,而且曾经至少发送过一条消息)发送广播消息,支持所有消息类型。 -**发送频率**:每分钟最多可发 10 条,而且每天最多可发 100 条广播消息。 +**发送频率**:每分钟最多可发 10 次,而且每天最多可发 100 次广播消息。 ### HTTP 请求 diff --git a/docs/document/unity/message_retrieve.md b/docs/document/unity/message_retrieve.md index a02aa0bf8..951dbd37b 100644 --- a/docs/document/unity/message_retrieve.md +++ b/docs/document/unity/message_retrieve.md @@ -34,7 +34,7 @@ 你可以调用 `GetConversationsFromServerWithCursor` 方法从服务端分页获取会话列表。通过设置该方法中的 `pinOnly` 参数确定是否只获取置顶会话列表: -- 若 `pinOnly` 为 `false`,获取包括置顶和未置顶会话的列表。SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。若会话中没有消息,则 SDK 按照会话创建时间的倒序返回会话列表。服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 +- 若 `pinOnly` 为 `false`,获取包括置顶和未置顶会话的列表。SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 - 若为 `true` 仅获取置顶会话列表,最多可拉取 50 个置顶会话。SDK 按照会话置顶时间的倒序返回。 :::notice diff --git a/docs/document/web/message_retrieve.md b/docs/document/web/message_retrieve.md index e0adf6024..fbd5660dc 100644 --- a/docs/document/web/message_retrieve.md +++ b/docs/document/web/message_retrieve.md @@ -30,9 +30,7 @@ 对于单聊或群聊,用户发消息时,会自动将对方添加到用户的会话列表。 -你可以调用 `getServerConversations` 方法从服务端分页获取会话列表,每个会话包含最新一条历史消息。SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。若会话中没有消息,则 SDK 按照会话创建时间的倒序返回会话列表。 - -服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 +你可以调用 `getServerConversations` 方法从服务端分页获取会话列表,每个会话包含最新一条历史消息。SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 :::notice 1. 若使用该功能,需将 SDK 升级至 4.1.7 或以上版本。 diff --git a/docs/document/windows/message_retrieve.md b/docs/document/windows/message_retrieve.md index 76e434f2d..e9edc0fa0 100644 --- a/docs/document/windows/message_retrieve.md +++ b/docs/document/windows/message_retrieve.md @@ -34,7 +34,7 @@ 你可以调用 `GetConversationsFromServerWithCursor` 方法从服务端分页获取会话列表。通过设置该方法中的 `pinOnly` 参数确定是否只获取置顶会话列表: -- 若 `pinOnly` 为 `false`,获取包括置顶和未置顶会话的列表。SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。若会话中没有消息,则 SDK 按照会话创建时间的倒序返回会话列表。服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 +- 若 `pinOnly` 为 `false`,获取包括置顶和未置顶会话的列表。SDK 按照会话活跃时间(会话的最新一条消息的时间戳)的倒序返回会话列表。服务器默认存储 100 条会话,可存储 7 天。若提升这两个上限,需联系环信商务。 - 若为 `true` 仅获取置顶会话列表,最多可拉取 50 个置顶会话。SDK 按照会话置顶时间的倒序返回。 :::notice