无论如何可以从群组中获取谷歌聊天消息。我确实使用 webbook 发送了消息,但我想阅读消息,以便我可以根据关键字做一些事情。
url = '<INCOMING-WEBHOOK-URL>'
bot_message = {
'text' : 'Hello from a Python script!'}
message_headers = {'Content-Type': 'application/json; charset=UTF-8'}
http_obj = Http()
response = http_obj.request(
uri=url,
method='POST',
headers=message_headers,
body=dumps(bot_message),
)
print(response)