summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixes ThreadAbortException that was preventing the verifier being saved with ↵Andrew Arnott2013-06-091-1/+0
| | | | the request token.
* Fixes string representation of an access token in the sample.Andrew Arnott2013-06-092-1/+11
|
* Fixes escaping issues with OAuth 1.0 request tokens and cookies.Andrew Arnott2013-06-091-3/+5
|
* Update out my own OpenID in the sample.Andrew Arnott2013-06-091-2/+2
|
* Fixes RP verification failure in sample.Andrew Arnott2013-06-091-1/+1
|
* Fixes OpenIdProviderWebForms login.Andrew Arnott2013-06-093-3/+5
|
* Fixes break in OpenIdProviderWebForms home page.Andrew Arnott2013-06-091-11/+11
|
* Fixes compiler warning.Andrew Arnott2013-06-091-1/+1
|
* Removes TODOAndrew Arnott2013-06-091-1/+1
|
* Identifies a couple of TODO comments as being new in 5.0 that need to be ↵Andrew Arnott2013-06-092-2/+2
| | | | resolved.
* Fixes missing HTML tag.Andrew Arnott2013-06-091-0/+1
|
* Removes classic ASP support and sample.Andrew Arnott2013-06-0915-696/+0
|
* Removes InfoCardRelyingParty web site sample.Andrew Arnott2013-06-0223-18403/+0
| | | | Again, web sites without projects just cause problems. And InfoCard doesn't even work in Windows 8. It's a dying technology (tragic, but true).
* Removes tests based on hosting ASP.NET on a project-less web site.Andrew Arnott2013-06-0211-587/+0
| | | | Hosting ASP.NET has always been a fragile effort. And project-less web sites are born with constant issues. It's easier to just remove it. OWIN and Katana are likely to make this code obsolete anyway.
* Merge branch 'v4.3'Andrew Arnott2013-06-025-5/+3141
|\
| * Automates package restore on buildv4.3.1.13153Andrew Arnott2013-06-021-2/+2
| | | | | | | | This should fix the recent build breaks on TeamCity.
| * Merge branch 'v4.3' of https://github.com/DotNetOpenAuth/DotNetOpenAuth into ↵Andrew Arnott2013-05-3129-263/+1434
| |\ | | | | | | | | | v4.3
| | * Adds missing nuget.exeAndrew Arnott2013-05-271-0/+0
| | |
| * | Replaces hard-coded algorithms for parameterized ones.Andrew Arnott2013-05-314-3/+3139
| | | | | | | | | | | | Closes #285
* | | Made AppBlock GetGraph methods asyncAndrew Arnott2013-05-276-31/+31
| | |
* | | Merge branch 'v4.3'Andrew Arnott2013-05-2749-260/+17402
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: samples/OAuthClient/Default.aspx samples/OAuthClient/Facebook.aspx.cs samples/OAuthClient/Web.config samples/OAuthClient/WindowsLive.aspx.cs samples/OAuthClient/packages.config src/DotNetOpenAuth.Core/Messaging/OutgoingWebResponse.cs src/DotNetOpenAuth.Core/Messaging/StandardWebRequestHandler.cs src/DotNetOpenAuth.OAuth.Consumer/OAuth/ConsumerBase.cs src/DotNetOpenAuth.OAuth.Consumer/OAuth/OAuth1HmacSha1HttpMessageHandler.cs src/DotNetOpenAuth.OAuth.Consumer/OAuth/OAuth1HttpMessageHandlerBase.cs src/DotNetOpenAuth.OAuth.Consumer/OAuth/OAuth1PlainTextMessageHandler.cs src/DotNetOpenAuth.OAuth.Consumer/OAuth/OAuth1RsaSha1HttpMessageHandler.cs src/DotNetOpenAuth.OAuth2.Client/OAuth2/WebServerClient.cs src/packages/repositories.config src/version.txt
| * | Merges improvements to MicrosoftClient.Andrew Arnott2013-05-261-9/+24
| |\ \ | | | | | | | | | | | | Closes #256
| | * | Switches back default scope for MicrosoftClient.Andrew Arnott2013-05-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | 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.
| | * | Improve Microsoft ClientMatt Johnson2013-05-261-9/+24
| |/ / | | | | | | | | | | | | | | | | | | Allow the developer to specify different scopes. Set the default scope to "wl.signin" instead of "wl.basic". This provides a better out-of-the-box experience. See http://stackoverflow.com/q/15125410/634824
| * | Switches FacebookClient to use an array of scopes.Andrew Arnott2013-05-261-3/+3
| | |
| * | Adds ctor overload with scope parameter to FacebookClient.Andrew Arnott2013-05-261-2/+26
| |\ \ | | | | | | | | | | | | Closes #272
| | * | Adds FacebookClient ctor overload.Andrew Arnott2013-05-261-1/+16
| | | | | | | | | | | | | | | | | | | | Adding a new overload rather than changing an existing one avoids the risk of a binary breaking change that might impact folks.
| | * | StyleCop message fixes.Andrew Arnott2013-05-261-5/+8
| | | |
| | * | Adding scope parameter for facebook clientThomas Holloway2013-05-261-2/+8
| |/ /
| * | Merges András Fuchs enhancements to the OAuth samples.Andrew Arnott2013-05-2624-245/+1376
| |\ \
| | * | Fixes StyleCop messages.Andrew Arnott2013-05-267-78/+98
| | | |
| | * | Samples improvementsAndrás Fuchs2013-05-2624-245/+1356
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The part which I needed to improve is the ApplicationBlock where I changed the OAuth2 classes' structure a little and extended them with a lot of useful functionality, like adding many Facebook and WindowsLive scopes, fields, structures including the asked-by-many easy to use birthdate and avatar url getters. I have also implemented the Google OAuth2 authentication and created one common interface for all 3 Graphs in the code (which has the common properties like Id, FirstName, LastName, etc.), so the authentication code became really simple if you use my version of your ApplicationBlock.
| * | Merge pull request #281.Andrew Arnott2013-05-262-7/+8
| |\ \ | | |/ | |/| | | | I rewrote history for the pull request in order to fix the commit author name.
| | * Fixed Style WarningsGirish Bablani2013-05-261-2/+2
| | |
| | * Merge branch 'v4.3' of https://github.com/DotNetOpenAuth/DotNetOpenAuth into ↵Girish Bablani2013-05-26158-32727/+2408
| | |\ | | |/ | |/| | | | | | | | | | | | | v4.3 Conflicts: samples/OAuthClient/Web.config
| * | Removes samples\TestAzureADAndrew Arnott2013-05-05139-32575/+0
| | | | | | | | | | | | it has a build break, and I'm not sure it was ever meant to be checked in.
| * | Adds Azure Active Directory OAuth 2 client.Andrew Arnott2013-05-05159-0/+36104
| |\ \ | | | | | | | | | | | | Closes #271
| | * | Minor pull request touch-upsAndrew Arnott2013-05-059-137/+2381
| | | | | | | | | | | | | | | | | | | | Whitespace changes. Revert .gitignore file change.
| | * | Merge branch 'v4.3' of git://github.com/gbablani/DotNetOpenAuth into ↵Andrew Arnott2013-05-05159-1/+33861
| | |\ \ | |/ / / | | | | | | | | gbablani-v4.3
| * | | Incremented version to v4.3.1.Andrew Arnott2013-04-271-1/+1
| | | |
| * | | Removes CTP version marker from v4.3 branchv4.3.0.13117Andrew Arnott2013-04-271-1/+0
| | | |
| * | | Merge branch 'v4.2' into v4.3Andrew Arnott2013-04-223-6/+9
| |\ \ \
| | * \ \ Merge branch 'v4.1' into v4.2Andrew Arnott2013-04-221-1/+1
| | |\ \ \
| | | * | | Fixes compile error on .NET 3.5Andrew Arnott2013-04-221-1/+1
| | | | | |
| | * | | | Use only web safe characters in client state argAndrew Arnott2013-04-112-5/+8
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #268
| * | | | | Merge branch 'v4.2' into v4.3Andrew Arnott2013-04-114-4/+15
| |\ \ \ \ \ | | |/ / / / | | | | | | | | | | | | | | | | | | Conflicts: src/version.txt
| | * | | | Merge branch 'v4.1' into v4.2Andrew Arnott2013-04-113-3/+14
| | |\ \ \ \ | | | |/ / /
| | | * | | Fixes exception thrown from unusual language-culture combinations in OpenID ↵Andrew Arnott2013-03-171-2/+11
| | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | Sreg responses. Closes #261.
| | | | * | | StyleCop and comment touch-ups.Andrew Arnott2013-03-171-4/+7
| | | | | | |
| | | | * | | A possible fix for exception in ClaimsResponse.Culture, if Language + ↵AkosLukacs2013-03-171-1/+7
| | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Country doesn't make a valid culture. https://github.com/DotNetOpenAuth/DotNetOpenAuth/issues/260 Just a simple try-catch. According to this comment at SO http://stackoverflow.com/a/12375100 using try-catch is the fastest is you don't expect a continuous stream of illegal combinations.
| | | * | | Adds Content-Length header to direct responses.Andrew Arnott2013-03-091-0/+2
| | | | | |
| | | * | | Merge remote-tracking branch 'origin/v4.1' into v4.1Andrew Arnott2013-03-0349-84/+748
| | | |\ \ \
| | | * | | | Fixes bad logic that reports expired tokens incorrectly.Andrew Arnott2013-03-031-1/+1
| | | | | | |
| | * | | | | Merge remote-tracking branch 'origin/v4.2' into v4.2Andrew Arnott2013-04-113-8/+8
| | |\ \ \ \ \
| | | * | | | | Fix Error LoggingJohn McKim2013-02-261-1/+1
| | | | | | | |
| | | * | | | | Incremented to version v4.2.3.Andrew Arnott2013-02-241-1/+1
| | | | | | | |
| * | | | | | | Merge branch 'v4.2' into v4.3Andrew Arnott2013-04-113-4/+3
| |\ \ \ \ \ \ \ | | |/ / / / / /
| | * | | | | | Merge branch 'v4.1' into v4.2Andrew Arnott2013-04-115-3/+16
| | |\ \ \ \ \ \ | | | | |_|/ / / | | | |/| | | | | | | | | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs
| | * | | | | | Ignores NuGet packages.Andrew Arnott2013-01-271-0/+1
| | | | | | | |
| | * | | | | | Fixes whitespace in .nuspec description.Andrew Arnott2013-01-262-4/+2
| | | | | | | |
| | | | | | | * Changed "global" endpoint to "common" endpoint to fix breaking change. ↵Girish Bablani2013-05-263-8/+9
| | | | | | |/ | | | | | | | | | | | | | | | | | | | | | Updated appid for sample app.
| | | | | | * Enabled AzureAD integration and added TestAzureAD sample appGirish Bablani2013-04-16159-1/+33861
| | |_|_|_|/ | |/| | | |
| * | | | | Updated version number for v4.3 branch.Andrew Arnott2013-02-231-2/+2
| | | | | |
| * | | | | Adds DelegatingHandler implementations for OAuth 1 consumers that sign ↵Andrew Arnott2013-02-238-297/+908
| | |_|/ / | |/| | | | | | | | | | | | | outgoing requests.
| * | | | Merge remote-tracking branch 'origin/v4.1' into v4.2v4.2.2.13055Andrew Arnott2013-02-235-3/+16
| |\ \ \ \ | | | |/ / | | |/| | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs
| | * | | Merge remote-tracking branch 'aarnott/v4.1' into v4.1Andrew Arnott2013-02-033-1/+9
| | |\ \ \
| | | * | | Adds another catch block to the logger initializer.Andrew Arnott2013-01-121-0/+2
| | | | | |
| | | * | | Fixes StyleCop break.Andrew Arnott2013-01-121-1/+1
| | | | | |
| | | * | | Accepted pull request #245Andrew Arnott2013-01-121-1/+2
| | | |\ \ \
| | | | * | | Update to support Front_End_Https header used by some loadbalancers for SSL ↵Mike Roest2013-01-121-1/+2
| | | |/ / / | | | | | | | | | | | | | | | | | | terminiation. As Per http://en.wikipedia.org/wiki/List_of_HTTP_header_fields#Common_non-standard_request_headers
| | | * | | Skips the UriIdentifier scheme workaround on Mono.Andrew Arnott2013-01-121-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mono doesn't support it. Thanks to Justin Nel <dogbertuk2000@gmail.com> for helping identify this mono limitation.
| | * | | | Merge in pull request #247Andrew Arnott2013-02-031-1/+6
| | |\ \ \ \ | | | |/ / / | | |/| | |
| | | * | | Touch up on community contribution.Andrew Arnott2013-02-031-6/+7
| | | | | |
| | | * | | Update samples/OpenIdProviderMvc/Controllers/OpenIdController.csSergey Kosivchenko2013-02-031-2/+6
| | |/ / / | | | | | | | | | | | | | | | Previous version did not work, if user had already authorized on provider, and use to authorizing on consumer ids with uppercase symbol, for example http://provider.com/user/AlGol 
| | * | | Fixes KeyNotFoundException in logging.Andrew Arnott2013-01-011-1/+1
| | | | |
| * | | | Updates Twitter URLs.Andrew Arnott2013-02-231-6/+6
| | |/ / | |/| | | | | | | | | | | | | | Thanks Christopher Cook for the tip. https://plus.google.com/116106034026223919199/posts/N422vX151Eq
| * | | Increments build version.Andrew Arnott2013-01-261-1/+1
| | | |
| * | | Adds OAuth2 packages to DotNetOpenAuth package.v4.2.1.13026Andrew Arnott2013-01-261-0/+4
| | | |
| * | | Incremented build version.Andrew Arnott2013-01-241-1/+1
| | | |
| * | | Remove the beta tag from v4.2 builds.v4.2.0.13024Andrew Arnott2013-01-241-1/+1
| | | |
* | | | Merge pull request #265 from skurdiukov/nlog_supportAndrew Arnott2013-04-074-1/+229
|\ \ \ \ | | | | | | | | | | Added support for NLog2 logger.
| * | | | Added support for NLog2 logger.Sergey Kurduykov2013-04-044-1/+229
| | | | |
* | | | | Merge pull request #266 from skurdiukov/fix_signless_buildAndrew Arnott2013-04-071-0/+2
|\ \ \ \ \ | |/ / / / |/| | | | Fixed error when building when property SignAssembly set to False
| * | | | Fixed error when building when property SignAssembly set to FalseSergey Kurduykov2013-04-041-0/+2
|/ / / /
* | | | Consolidates two OpenID memory app storesAndrew Arnott2013-03-2828-180/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The StandardRelyingPartyApplicationStore and StandardProviderApplicationStore were equivalent, and thus redundant. There was also nothing OpenID specific about them. So this consolidates and renames these types to better reflect their general purpose.
* | | | Removes some optional cancellation tokens that don't work with all server ↵Andrew Arnott2013-03-281-3/+3
| | | | | | | | | | | | | | | | configurations.
* | | | Switched version annotation from beta to alpha 1.Andrew Arnott2013-03-281-1/+1
| | | |
* | | | Fixes two unit tests that fail in Release configurations.Andrew Arnott2013-03-271-1/+1
| | | |
* | | | Avoids StyleCop messages on generated files in the IDE.Andrew Arnott2013-03-271-0/+8
| | | |
* | | | Removes broken links in sample.Andrew Arnott2013-03-271-3/+0
| | | |
* | | | Fixes OpenID discovery when multiple endpoints are found that only vary in ↵Andrew Arnott2013-03-271-8/+8
| | | | | | | | | | | | | | | | OpenID version.
* | | | Removes project templates from the nightly build.Andrew Arnott2013-03-261-4/+8
| | | |
* | | | Fixes whitespace.Andrew Arnott2013-03-261-5/+5
| | | |
* | | | Fixes MRefBuilder build break.Andrew Arnott2013-03-261-1/+6
| | | |
* | | | Fixed an assembly dependency to be a NuGet dependency.Andrew Arnott2013-03-263-1/+10
| | | | | | | | | | | | | | | | Hopefully fixes an MRefBuilder build break.
* | | | StyleCop fix for issue only caught by build server.Andrew Arnott2013-03-261-1/+7
| | | |
* | | | Last StyleCop fixes.Andrew Arnott2013-03-263-13/+18
| | | |
* | | | More StyleCop fixes.Andrew Arnott2013-03-2614-110/+69
| | | |
* | | | Lots of StyleCop fixes.Andrew Arnott2013-03-2662-260/+314
| | | |
* | | | Move to HttpClient throughout library.Andrew Arnott2013-03-26588-12696/+44777
|\ \ \ \