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