Skip to content

Commit

Permalink
Merge pull request #690 from ajkannan/remove-user-info-scope
Browse files Browse the repository at this point in the history
Remove userinfo scope from DatastoreOptions
  • Loading branch information
aozarov committed Mar 1, 2016
2 parents 667e606 + 7e498c1 commit b4bd1b9
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ public class DatastoreOptions extends ServiceOptions<Datastore, DatastoreRpc, Da

private static final long serialVersionUID = 5056049000758143852L;
private static final String DATASTORE_SCOPE = "https://www.googleapis.com/auth/datastore";
private static final String USERINFO_SCOPE = "https://www.googleapis.com/auth/userinfo.email";
private static final Set<String> SCOPES = ImmutableSet.of(DATASTORE_SCOPE, USERINFO_SCOPE);
private static final Set<String> SCOPES = ImmutableSet.of(DATASTORE_SCOPE);

private final String namespace;
private final boolean normalizeDataset;
Expand Down

0 comments on commit b4bd1b9

Please sign in to comment.