summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2.ResourceServer
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary references to Microsoft.Net.Http and Microsoft.Bcl.Build ↵lcalabrese2015-08-072-19/+1
| | | | since we are using .NET 4.5 and the built-in System.Net.Http library
* #365David Christiansen2015-01-052-0/+133
|
* Test greenDavid Christiansen2015-01-053-78/+747
| | | | - Packages update
* Closes #356, Closes #357, Closes #358David Christiansen2015-01-042-0/+4
|
* Fixed issue #339 minor typo in ResourceServerAaron Williams2014-05-021-1/+1
|
* Updates NuGet packages.Andrew Arnott2013-10-192-1/+14
|
* Strong-name key is replaced with non-encrypted one.Andrew Arnott2013-06-151-1/+1
|
* Lots of StyleCop fixes.Andrew Arnott2013-03-263-3/+15
|
* Unit test build break fixes.Andrew Arnott2013-03-061-1/+1
|
* Switched Channel to receiving messages via HttpRequestMessage as well.Andrew Arnott2013-03-042-34/+34
|
* Removes OAuthPrincipal in favor of ClaimsPrincipal.Andrew Arnott2013-03-031-3/+2
|
* Adds support for symmetric key signing and encryption of access tokens.Andrew Arnott2013-03-011-1/+14
| | | | This targets the common scenario where authorization servers and resource servers are actually on the same web application, and asymmetric cryptography is overkill and requires extra setup.
* C# compiler warning fixes.Andrew Arnott2013-02-102-21/+18
|
* Fixes OAuthConsumer twitter sample.Andrew Arnott2013-02-091-1/+1
|
* Updates to Validation 2.0.2 and log4net 2.0.0.Andrew Arnott2013-01-272-3/+3
|
* OAuth2.ResourceServer now builds.Andrew Arnott2013-01-132-18/+26
|
* System.Net.Http references recreated using NuGet.Andrew Arnott2012-12-282-0/+7
|
* Patches up the last nuget package reference for NET4.5Andrew Arnott2012-12-281-1/+1
|
* Removes CLR4 compiler symbol.Andrew Arnott2012-12-281-6/+0
|
* Accomodates nuget's insistent project file changes.Andrew Arnott2012-12-271-0/+2
|
* Removes more remnants of Code Contracts.Andrew Arnott2012-12-266-36/+0
|
* Replaces DNOA's internal Requires class with Validation NuGet package.Andrew Arnott2012-12-266-2/+16
|
* Merge branch 'v4.1'Andrew Arnott2012-12-021-3/+9
|\ | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/StandardAccessTokenAnalyzer.cs src/DotNetOpenAuth.Test/OAuth2/OAuth2TestBase.cs src/version.txt
| * Allows resource servers to receive unencrypted access tokens.Andrew Arnott2012-11-111-2/+1
| |
| * Wraps IOException with ProtocolException while decoding access tokens.Andrew Arnott2012-11-111-1/+7
| | | | | | | | Related to #178
| * Fixes exception thrown on missing access tokenAndrew Arnott2012-11-101-0/+1
| | | | | | | | | | | | | | | | | | The resource server was throwing an ArgumentException when an HTTP Authorization header appeared with a value of "Bearer " but no access token. We now throw a ProtocolException that can produce the appropriate error to the client. Fixes #230
* | Merge remote-tracking branch 'aarnott/master'Andrew Arnott2012-10-291-1/+1
|\ \ | |/ |/|
| * Adds AuthorizationServer.DecodeRefreshTokenAndrew Arnott2012-07-201-1/+1
| | | | | | | | | | | | And a unit test. Fixes #182
* | Adjusted AssemblyInfo.cs to be unique for each assembly.Andrew Arnott2012-09-291-9/+1
| | | | | | | | This should fix nuget pdb package submission to symbolsource.org
* | Adds overloads of ResourceServer for HttpRequestMessage.Andrew Arnott2012-09-271-0/+41
|/ | | | | | | The GetPrincipal and GetAccessToken now better support resource servers that are written in ASP.NET WebAPI. Fixes #206
* Authorization Server hosts now instantiate their own AccessTokens rather ↵Andrew Arnott2012-04-251-1/+2
| | | | | | | than just parameters. AccessTokens are now serialized via a virtual method on that instance. Fixes #38, I think.
* Fixed C# warnings.Andrew Arnott2012-04-231-3/+3
|
* Removed old FxCop suppression attributes.Andrew Arnott2012-04-222-5/+0
|
* Fixes access denial errors from OAuth 2 resource servers so they include the ↵Andrew Arnott2012-04-222-9/+36
| | | | | | required parameters in their WWW-Authenticate headers. Fixes #124
* Replaces ResourceServer.VerifyAccess with a better pattern for error handling.Andrew Arnott2012-04-211-49/+41
| | | | Fixes #122
* Fixed up the configuration story for OAuth 2.Andrew Arnott2012-04-182-1/+38
|
* Merge branch 'v4.0'Andrew Arnott2012-04-054-12/+12
|\ | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.OAuth2.Client/DotNetOpenAuth.OAuth2.Client.csproj src/DotNetOpenAuth.OAuth2.ResourceServer/DotNetOpenAuth.OAuth2.ResourceServer.csproj src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/ResourceServer.cs
| * Fixed peverify errors in unified assembly due to two resources sharing a ↵Andrew Arnott2012-04-054-10/+10
| | | | | | | | | | | | common manifest name. Related to #112 which reported peverify errors, but this is very unlikely to fix the VerificationException.
* | AccessToken is now a public class.Andrew Arnott2012-04-015-48/+83
| | | | | | | | | | | | | | | | | | | | | | Resource Servers can now handle access tokens that are issued for a client's data (not a 3rd party resource owner's). Client Identifiers are no longer included in access tokens for unauthenticated clients. More work needed on IAccessTokenAnalyzer and the access token formatter. We need to generalize the serialization itself so folks can use JWT, etc. We also still need access token to have a host-defined map of claims. Fixes #104 Fixes #102
* | Fixed build breaks in the solution.Andrew Arnott2012-03-171-2/+2
| |
* | A bunch more moving of OAuth2 classes between assemblies.Andrew Arnott2012-03-163-0/+132
| |
* | Redistributed OAuth2 code into their more specific assemblies.Andrew Arnott2012-03-162-0/+154
|/
* Replaced API requirements for HttpRequestInfo with HttpRequestBase (new in ↵Andrew Arnott2012-03-051-2/+2
| | | | | | .NET 3.5 SP1). This makes us more friendly to MVC as well as mock-based unit testing.
* Fixed many FxCop messages in OAuth2 assemblies. #68Andrew Arnott2012-02-094-2/+220
|
* Added DotNetOpenAuth.OAuth.Common to contain dependencies shared between ↵Andrew Arnott2012-02-082-4/+5
| | | | | | OAuth 1 and OAuth 2. Related to and closes #71
* Updated all copyright notices to reflect copyright assignment to Outercurve.Andrew Arnott2012-02-052-5/+5
| | | | Fixes #66
* Added Moq's internal proxy generator to InternalsVisibleTo so that mocks can ↵Andrew Arnott2012-01-291-0/+2
| | | | be created on internal types.
* Renamed assembly DotNetOpenAuth.Messaging(.UI) to DotNetOpenAuth.Core(.UI)Andrew Arnott2012-01-121-2/+2
|
* All product assemblies build without ccrewrite.exe now.Andrew Arnott2011-09-181-4/+4
|
* Broke out OAuth 2 into 4 separate assemblies.Andrew Arnott2011-08-013-0/+229