功能完成,状态为“无法与功能通信”

时间:2019-08-25 05:38:24

标签: go google-cloud-functions

我有一个简单的Google谷歌云fn,它会进行一些计算,然后将某些数据(例如X)报告给我的Slack API,该API会将带有X的消息发送到Slack频道。

我在邮递员上测试了X,而Slack确实成功发送了一条消息。但是,在我的云函数中,恰好在调用{2: [1, 3], 5: 4, 6: 9} 的位置,该函数停止响应,并记录为“函数状态已完成:无法与该函数通信”。

UILabel

http.Postfunc sendMessage(domains []BadDomain) (*http.Response, error) { requestBody, err := prepareBody(domains) if err != nil { log.Fatal("Error preparing the request body --- ", err) return nil, err } else { resp, err := http.Post(url, "application/json", requestBody) if err != nil { return nil, err } else { return resp, nil } } } 。 json有效负载是正确的,我已经通过邮递员对其进行了测试。

0 个答案:

没有答案