diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-11-10 13:20:23 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-11-10 13:20:23 -0800 |
commit | 85d082f0046c4266e5571ea38c8ac27f47db8f45 (patch) | |
tree | 72b05051ca83c22467499e3593f2220e32021663 /src/DotNetOpenAuth.AspNet/Clients/OAuth/DotNetOpenAuthWebConsumer.cs | |
parent | 94a7276b4aad80faa0ccbe8d754f63d8d1d7c9fa (diff) | |
download | DotNetOpenAuth-85d082f0046c4266e5571ea38c8ac27f47db8f45.zip DotNetOpenAuth-85d082f0046c4266e5571ea38c8ac27f47db8f45.tar.gz DotNetOpenAuth-85d082f0046c4266e5571ea38c8ac27f47db8f45.tar.bz2 |
Fixes Twitter auth to not force re-login the user.
Fixes #231
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/Clients/OAuth/DotNetOpenAuthWebConsumer.cs')
-rw-r--r-- | src/DotNetOpenAuth.AspNet/Clients/OAuth/DotNetOpenAuthWebConsumer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth/DotNetOpenAuthWebConsumer.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth/DotNetOpenAuthWebConsumer.cs index 7eda8e4..9af6804 100644 --- a/src/DotNetOpenAuth.AspNet/Clients/OAuth/DotNetOpenAuthWebConsumer.cs +++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth/DotNetOpenAuthWebConsumer.cs @@ -77,7 +77,7 @@ namespace DotNetOpenAuth.AspNet.Clients { /// The callback. /// </param> public void RequestAuthentication(Uri callback) { - var redirectParameters = new Dictionary<string, string> { { "force_login", "false" } }; + var redirectParameters = new Dictionary<string, string>(); UserAuthorizationRequest request = this.webConsumer.PrepareRequestUserAuthorization( callback, null, redirectParameters); this.webConsumer.Channel.PrepareResponse(request).Send(); |