diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-05-26 08:05:05 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-05-26 08:05:05 -0700 |
commit | 41fd4b0f54b8080471e35822b0d8cccd7f621b3b (patch) | |
tree | 974617c64a945ad84190271881a8c49fa8efe4c4 /samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleClient.cs | |
parent | 2a4da5e544a22d30d5b54a2696194d814d9a442f (diff) | |
download | DotNetOpenAuth-41fd4b0f54b8080471e35822b0d8cccd7f621b3b.zip DotNetOpenAuth-41fd4b0f54b8080471e35822b0d8cccd7f621b3b.tar.gz DotNetOpenAuth-41fd4b0f54b8080471e35822b0d8cccd7f621b3b.tar.bz2 |
Fixes StyleCop messages.
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleClient.cs')
-rw-r--r-- | samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleClient.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleClient.cs b/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleClient.cs index c623d2f..1e1a486 100644 --- a/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleClient.cs +++ b/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleClient.cs @@ -57,6 +57,11 @@ namespace DotNetOpenAuth.ApplicationBlock { /// https://developers.google.com/accounts/docs/OAuth2Login /// </remarks> public static class Scopes { + public const string PlusMe = "https://www.googleapis.com/auth/plus.me"; + + /// <summary> + /// Scopes that cover queries for user data. + /// </summary> public static class UserInfo { /// <summary> /// Gain read-only access to basic profile information, including a user identifier, name, profile photo, profile URL, country, language, timezone, and birthdate. @@ -69,8 +74,6 @@ namespace DotNetOpenAuth.ApplicationBlock { public const string Email = "https://www.googleapis.com/auth/userinfo.email"; } - public const string PlusMe = "https://www.googleapis.com/auth/plus.me"; - public static class Drive { /// <summary> /// Full, permissive scope to access all of a user's files. Request this scope only when it is strictly necessary. |