summaryrefslogtreecommitdiffstats
path: root/samples/OAuthResourceServer/Code/OAuthAuthorizationManager.cs
Commit message (Collapse)AuthorAgeFilesLines
* Closes #356, Closes #357, Closes #358David Christiansen2015-01-041-2/+4
|
* C# compiler warning fixes.Andrew Arnott2013-02-101-0/+1
|
* Fixed a bunch more samples.Andrew Arnott2013-01-231-32/+52
|
* Fixes access denial errors from OAuth 2 resource servers so they include the ↵Andrew Arnott2012-04-221-8/+7
| | | | | | required parameters in their WWW-Authenticate headers. Fixes #124
* Replaces ResourceServer.VerifyAccess with a better pattern for error handling.Andrew Arnott2012-04-211-6/+6
| | | | Fixes #122
* HttpRequestInfo ctors are now internal, and publicly we have staticAndrew Arnott2012-03-051-1/+1
| | | | factory methods that return HttpRequestBase instances.
* Finished implicit grant sample. Yay.Andrew Arnott2011-06-211-1/+1
|
* Fixed static field initialization.Andrew Arnott2011-04-071-8/+9
|
* Replaced OAuth2 API demands for RSAParameters with demands for ↵Andrew Arnott2011-04-061-2/+2
| | | | | | | | RSACryptoServiceProvider. This allows for servers that have non-exportable private keys to still use those private keys for signing and decryption. Closes #16
* Merge branch 'v3.4' into oauth2Andrew Arnott2011-04-061-1/+1
| | | | | | | Conflicts: projecttemplates/RelyingPartyLogic/OAuthAuthorizationManager.cs samples/DotNetOpenAuth.ApplicationBlock/DotNetOpenAuth.ApplicationBlock.csproj samples/OAuthResourceServer/Code/OAuthAuthorizationManager.cs
* Replaced WCF "OriginalHttpRequestUri" property with simple Via.Andrew Arnott2010-12-251-1/+1
| | | | Thanks to Jamie Mutton for suggesting this.
* Split the OAuthServiceProvider sample into two samples: ↵Andrew Arnott2010-07-311-0/+79
OAuthAuthorizationServer and OAuthResourceServer. Renamed OAuthConsumer to OAuthClient.