我不确定云功能,但是,您将在常规 API 中获得它,或者您可以使用 API 库来回答您的问题,当您使用 space.messages.create 创建消息时,它会返回消息 ID 作为响应,您可以使用它更新消息 API 中的消息 ID。
检查以下来自创建消息 API 的响应,
{
"name": "spaces/u********E/messages/N*********M.N*********M", **//last one is messageId**
"sender": {
"name": "users/1***************2",
"displayName": "",
"type": "BOT"
},
"text": "hello world",
"cards": [],
"previewText": "",
"annotations": [],
"thread": {
"name": "spaces/u********E/threads/N********M"
},
"space": {
"name": "spaces/u********E",
"type": "DM",
"displayName": ""
},
"fallbackText": "",
"argumentText": "Hello World",
"createTime": "2019-03-07T07:44:06.430607Z"
}
另请参阅发现文档。
https://chat.googleapis.com/$discovery/rest?version=v1
在这里,您将使用库实现创建消息。
https://github.com/googleapis/google-api-nodejs-client/issues/1123#issuecomment-396111871