Skip to content

Instantly share code, notes, and snippets.

@ThomasLocke
Created August 8, 2014 09:13
Show Gist options
  • Save ThomasLocke/876a4ae65c1eed9e2bdc to your computer and use it in GitHub Desktop.
Save ThomasLocke/876a4ae65c1eed9e2bdc to your computer and use it in GitHub Desktop.
Google Cloud Datastore Dart example, getDatastore()
console.Datastore getDatastore() {
final ComputeOAuth2Console oauthClient =
new ComputeOAuth2Console(Config.projectNumber,
privateKey : Config.privateKey,
iss : Config.serviceEmail,
scopes : Config.scopes);
return new console.Datastore(oauthClient)
..makeAuthRequests = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment