diff options
author | Ilya Grebnov <ilya.grebnov@gmail.com> | 2012-11-27 19:01:48 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-11-27 22:04:03 -0800 |
commit | 8b8795c4eb49852421d7970fc70d70dfc9608a30 (patch) | |
tree | c5fd97572b44bba903c1262f1812d4be7af74195 /src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClient.cs | |
parent | 7b394003dc2dfb8fa8aea6f8162b7d044d660ed1 (diff) | |
download | DotNetOpenAuth-8b8795c4eb49852421d7970fc70d70dfc9608a30.zip DotNetOpenAuth-8b8795c4eb49852421d7970fc70d70dfc9608a30.tar.gz DotNetOpenAuth-8b8795c4eb49852421d7970fc70d70dfc9608a30.tar.bz2 |
Updating Microsoft account OAuth endpoints
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClient.cs')
-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 5ac5591..faea868 100644 --- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClient.cs +++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClient.cs @@ -20,12 +20,12 @@ namespace DotNetOpenAuth.AspNet.Clients { /// <summary> /// The authorization endpoint. /// </summary> - private const string AuthorizationEndpoint = "https://oauth.live.com/authorize"; + private const string AuthorizationEndpoint = "https://login.live.com/oauth20_authorize.srf"; /// <summary> /// The token endpoint. /// </summary> - private const string TokenEndpoint = "https://oauth.live.com/token"; + private const string TokenEndpoint = "https://login.live.com/oauth20_token.srf"; /// <summary> /// The _app id. |