问题描述
我正在编写用于使用环聊聊天机器人在房间之间传递消息的服务.可以使用环聊聊天机器人创建房间吗?
I am writing service for messaging between rooms using Hangouts chatbot. Is it possible to create a room with Hangouts chatbot?
https://developers.google.com/hangouts/chat/concepts
推荐答案
如果通常可以使用Hangous API以编程方式创建新房间,则可以使用聊天机器人来完成.
例如,如果您使用Apps脚本实现聊天框,您可以创建一个函数 ,然后在确定event.message.text
的情况下进行建立(例如,如果消息文本包含字符串create new room
,则创建一个新的聊天室.
If it were generally possible to create a new room programmaticaly with the Hangous API, you could do it with the chatbot.
For example, if you implement the chatbox with Apps Script, you can create a function onMessage(event)
and establish was will to happen in case of a certain event.message.text
(e.g. create a new chat room if the message text contains the string create new room
.
但是,目前暂时无法以编程方式创建新的聊天室.
有一个功能请求,要求该功能,但考虑到潜在的滥用可能性,有争议的是它将被实施.
There is a feature request asking for this functionality, but given the potential of abuse, it is controversial either it will be implemented.
请参阅评论2:
然后评论#25:
这篇关于Google Hangouts聊天机器人创建室的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!