Skip to content

Instantly share code, notes, and snippets.

@tnuki10
Last active August 29, 2015 14:14
Show Gist options
  • Save tnuki10/8081b945ab8db0f95f38 to your computer and use it in GitHub Desktop.
Save tnuki10/8081b945ab8db0f95f38 to your computer and use it in GitHub Desktop.
GAEからGoogle Cloud Storage Go Client Libraryを利用(認証)
// google.golang.org/cloud でcontextを作ると、GCPの各サービス用のライブラリが使えるようになるっぽい。
c := appengine.NewContext(r)
tokenSource := google.AppEngineTokenSource(c, storage.ScopeFullControl)
client := oauth2.NewClient(
c,
tokenSource,
)
ctx := cloud.NewContext(appengine.AppID(c), client)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment