英文:
How do I use the appengine/urlfetch package with goauth2?
问题
goauth2包有一个示例用法。但在应用引擎上,普通的http.Client不可用。我该如何在应用引擎中使用urlfetch包与goauth2一起使用?
英文:
The goauth2 package has an example use. But on app engine, the normal http.Client isn't available. How do I use the app engine urlfetch package with goauth2?
答案1
得分: 6
你必须在回调的第一行中添加一个Transport
参数:
t := &oauth.Transport{
Config: oauth_conf,
Transport: &urlfetch.Transport{Context: c},
}
英文:
You must add a Transport
parameter to the first line of the callback:
t := &oauth.Transport{
Config: oauth_conf,
Transport: &urlfetch.Transport{Context: c},
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论