我正在尝试此链接中的示例代码,并尝试使用 Go runtime 中的 Google Cloud Storage Client App 在 Google Cloud Storage 上执行操作,但示例代码中的以下部分给出了错误“无法使用 c(类型“appengine”.Context ) 作为函数参数中的 context.Context 类型: “appengine”.Context 没有实现 context.Context(缺少 Deadline 方法)”
c := appengine.NewContext(r)
hc := &http.Client{
Transport: &oauth2.Transport{
Source: google.AppEngineTokenSource(c, storage.ScopeFullControl),
Base: &urlfetch.Transport{Context: c},
},
}
这里有什么问题??我该如何解决这个问题??
慕桂英546537
相关分类