Twilio 对话:从封闭对话中创建新对话时处理旧消息
Twilio Conversation: Handling of old messages when a new conversation is created out of Closed Conversation
在 twilio 对话文档中,它说-
If new message comes into closed Conversation, a new Conversation will be auto-created with
the Participant who initiated the Conversation. At this point, there is no automatic addition
of other Participants, so you should add them to the newly created Conversation.
https://www.twilio.com/docs/conversations/states-timers#closed-conversations
在这种情况下,旧消息会发生什么情况,它们会被复制到新对话中吗?如果没有,推荐的方法是什么?
此处为 Twilio 开发人员布道师。
新对话将不会收到旧的已关闭对话的消息。如果您确实想将消息添加到该对话中,则需要 fetch them from the API and create new messages using the REST API.
在 twilio 对话文档中,它说-
If new message comes into closed Conversation, a new Conversation will be auto-created with
the Participant who initiated the Conversation. At this point, there is no automatic addition
of other Participants, so you should add them to the newly created Conversation.
https://www.twilio.com/docs/conversations/states-timers#closed-conversations
在这种情况下,旧消息会发生什么情况,它们会被复制到新对话中吗?如果没有,推荐的方法是什么?
此处为 Twilio 开发人员布道师。
新对话将不会收到旧的已关闭对话的消息。如果您确实想将消息添加到该对话中,则需要 fetch them from the API and create new messages using the REST API.