Skip to content

Commit

Permalink
Merge pull request #492 from haoxiuwen/doc-v2
Browse files Browse the repository at this point in the history
Remodify need_download Parameter in REST API of Importing a Message
  • Loading branch information
haoxiuwen authored Nov 9, 2023
2 parents 94d0efa + 0c3dce5 commit d4f6884
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/document/server-side/message_import.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ POST https://{host}/{org_name}/{app_name}/messages/users/import
| `body` | JSON || 消息内容。 |
| `is_ack_read` | Bool || 是否设置消息为已读。<br/> - `true`:是;<br/> - `false`:否。 |
| `msg_timestamp` | Long || 要导入的消息的时间戳,单位为毫秒。若不传该参数,环信服务器会将导入的消息的时间戳设置为当前时间。 |
| `need_download` | Bool || 是否需要下载附件并上传到服务器。<br/> - `true`:是。这种情况下,需确保附件地址可正常访问,无需访问权限。若附件地址设置了访问控制权限,该参数需设置为 `false`,调用该 API 前你需自行下载附件,然后上传到服务器。<br/> - (默认)`false`:否。 |
| `need_download` | Bool || 是否需要下载附件并上传到服务器。<br/> - `true`:是。这种情况下,需确保附件地址可直接访问,没有访问权限的限制。<br/> - (默认)`false`:否。 |

与发送单聊消息类似,不同类型的消息只是 `body` 字段内容存在差异。详见 [发送单聊消息](message_single.html)

Expand Down Expand Up @@ -184,7 +184,7 @@ POST https://{host}/{org_name}/{app_name}/messages/chatgroups/import
| `body` | JSON || 消息内容。 |
| `is_ack_read` | Bool || 是否设置消息为已读。<br/> - `true`:是;<br/> - `false`:否。 |
| `msg_timestamp` | Long || 要导入的消息的时间戳,单位为毫秒。若不传该参数,环信服务器会将导入的消息的时间戳设置为当前时间。 |
| `need_download` | Bool || 是否需要下载附件并上传到服务器。<br/> - `true`:是。这种情况下,需确保附件地址可正常访问,无需访问权限。若附件地址设置了访问控制权限,该参数需设置为 `false`,调用该 API 前你需自行下载附件,然后上传到服务器。<br/> - (默认)`false`:否。 |
| `need_download` | Bool || 是否需要下载附件并上传到服务器。<br/> - `true`:是。这种情况下,需确保附件地址可直接访问,没有访问权限的限制。<br/> - (默认)`false`:否。 |

:::notice
与发送消息类似,不同类型的消息只是 `body` 字段内容存在差异。详见 [发送群聊消息](message_group.html)
Expand Down

0 comments on commit d4f6884

Please sign in to comment.