我有以下谷歌云功能:
def run_msg(event, context):
print(event["data"])
url = 'google_chat_hook'
bot_message = {
'text' : '{}'.format(event["data"])}
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),
)
当我使用以下触发事件直接从 Cloud Function Interface 测试该功能时,我{"data": {"message": "test"}}
在 google chat => 中发布了正确的消息,{"message": "test"}
但是当我手动从 pub sub 发布消息时,我有以下类型的东西发布在谷歌聊天iB7Im1lc3NhZ2UiOiAibXNnX2Nvb2wifX
我不明白这里发生了什么。