如何通过环聊中的Webhook将响应发送到同一线程

时间:2019-07-10 17:19:59

标签: webhooks hangouts-chat

我可以使用应用脚本通过Webhooks将消息发送到聊天室,但是我如何发送对该消息的回复。这是一种单向聊天。我如何能够通过Webhooks进行交谈

1 个答案:

答案 0 :(得分:1)

您可以提供threadKey作为查询参数。您可以自己生成此密钥。具有相同threadKey的邮件被分组在一起。

curl -H 'Content-Type: application/json' -X POST https://chat.googleapis.com/v1/spaces/<space>/messages?key=<key>\&token=<token>\&threadKey=this-thread-rocks --data '{"text": "hi there"}'

有关文档,请参见https://developers.google.com/hangouts/chat/reference/rest/v1/spaces.messages/create