Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
goauth2パッケージには使用例があります。ただし、アプリ エンジンでは、通常の http.Client は使用できません。goauth2 でアプリ エンジンの urlfetch パッケージを使用するにはどうすればよいですか?
Transportコールバックの最初の行にパラメーターを追加する必要があります。
Transport
t := &oauth.Transport{ Config: oauth_conf, Transport: &urlfetch.Transport{Context: c}, }