diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-05-26 10:30:08 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-05-26 10:30:08 -0700 |
commit | d9dcfbda901b34b193371d833e19ac015711c367 (patch) | |
tree | 38a77e0bc8144f6bb252fc4d5c51f95bf852d22e /src | |
parent | 033d0217988e26ae77d3378aec82905cebad0f86 (diff) | |
download | DotNetOpenAuth-d9dcfbda901b34b193371d833e19ac015711c367.zip DotNetOpenAuth-d9dcfbda901b34b193371d833e19ac015711c367.tar.gz DotNetOpenAuth-d9dcfbda901b34b193371d833e19ac015711c367.tar.bz2 |
Switches back default scope for MicrosoftClient.
We shouldn't change default values for a popular shipped class.
It would cause too many failures in existing web sites when they upgrade
that would be difficult to track down.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClient.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClient.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClient.cs index d50f3c5..1fb219e 100644 --- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClient.cs +++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClient.cs @@ -48,12 +48,12 @@ namespace DotNetOpenAuth.AspNet.Clients { /// <summary> /// Initializes a new instance of the <see cref="MicrosoftClient"/> class. - /// Requests a scope of "wl.signin" by default. + /// Requests a scope of "wl.basic" by default, but "wl.signin" is a good minimal alternative. /// </summary> /// <param name="appId">The app id.</param> /// <param name="appSecret">The app secret.</param> public MicrosoftClient(string appId, string appSecret) - : this("microsoft", appId, appSecret, "wl.signin") + : this(appId, appSecret, "wl.basic") { } |