如何使用Go API客户端以编程方式创建Google云函数



有一个Go包用于与云函数API(google.golang.org/API/cloudfunctions/v1)交互,但我不知道如何使用它来创建新函数。当我试图上传到云存储桶的签名URL时,我得到了404和403错误。

有人知道如何使用这个包来部署云功能吗?

我在使用google.golang.org/api/cloudfunctions/v1时遇到了类似的问题,403错误的第一个问题是由于使用了auth客户端使用预签名的生成上传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在该项目中的使用情况:

云功能服务

相关内容

  • 没有找到相关文章

最新更新