如何使用Go API客户端以编程方式创建Google Cloud Function

时间:2019-01-30 19:16:17

标签: go google-cloud-platform google-cloud-functions

有一个Go包可以与Cloud Functions API(google.golang.org/api/cloudfunctions/v1)进行交互,但是我不知道如何使用它来创建新函数。尝试上传到Cloud Storage存储桶的签名URL时,出现404和403错误。

有人知道如何使用此软件包来部署Cloud Functions吗?

1 个答案:

答案 0 :(得分:2)

使用google.golang.org/api/cloudfunctions/v1时遇到了类似的问题, 我遇到的403错误的第一个问题是由于使用身份验证客户端 预签名的Generate Upload URL(使用裸http客户端帮助)

httpClient := http.DefaultClient
data, err := ioutil.ReadAll(reader)
if err != nil {
    return err
}
request, err := http.NewRequest("PUT", uploadURL, bytes.NewReader(data))
if err != nil {
    return err
}
request.Header.Set("content-type", "application/zip")
request.Header.Set("x-goog-content-length-range", "0,104857600")
request.Header.Set("Content-Length", fmt.Sprintf("%d", len(data)))
response, err := httpClient.Do(request)
if err != nil {
    return err
}

我在404中看到的另一个问题是当我使用位置作为区域而不是下面代码段中显示的完全限定名称时

var location =  'projects/${projectID}/locations/${region}'  
projectService := cloudfunctions.NewProjectsLocationsFunctionsService(ctxClient.service)
createCall := projectService.Create(location, request.CloudFunction)
createCall.Context(ctxClient.Context())
return createCall.Do()
h

您还可以在此项目中检查golang云函数google.golang.org/api/cloudfunctions/v1 API的使用情况:

Cloud function service