summaryrefslogtreecommitdiffstats
path: root/samples/OAuthServiceProvider/Code
Commit message (Collapse)AuthorAgeFilesLines
* Updated all copyright notices to reflect copyright assignment to Outercurve.Andrew Arnott2012-02-053-6/+6
| | | | Fixes #66
* Added OAuth 1.0 samples from v3.4 branch and fixed them up a bit so thatAndrew Arnott2012-02-0217-0/+2085
| | | | | | they work here. Fixes #64
* Split the OAuthServiceProvider sample into two samples: ↵Andrew Arnott2010-07-3112-1656/+0
| | | | | | OAuthAuthorizationServer and OAuthResourceServer. Renamed OAuthConsumer to OAuthClient.
* Multiple client callback URLs are now supported.Andrew Arnott2010-07-301-2/+15
| | | | And some StyleCop cleanup.
* Ripped out OAuth 1.0 support from the OAuthServiceProvider sample.Andrew Arnott2010-07-226-97/+145
|
* Stripping OAuth 1.0 support from the OAuthServiceProvider sample.Andrew Arnott2010-07-2215-705/+141
|
* Changed the public API for OAuth 2.0 scope from a space-delimited string to ↵Andrew Arnott2010-07-191-3/+3
| | | | a HashSet<string>
* Renamed WebServerAuthorizationServer to just AuthorizationServer.Andrew Arnott2010-07-181-1/+1
|
* Got the OAuthConsumerWpf sample working with Facebook OAuth 2.0 again.Andrew Arnott2010-07-061-3/+7
|
* OAuth 2.0 sample works, draft 9 style.Andrew Arnott2010-07-041-0/+3
|
* Removed last tie between OAuth 2.0 and OAuth 1.0 in the code.Andrew Arnott2010-06-252-2/+13
|
* Renamed the OAuthWrap namespaces to be OAuth2.Andrew Arnott2010-06-253-5/+5
|
* Work toward OAuth 2.0 draft 8.Andrew Arnott2010-06-141-2/+2
|
* Lots of StyleCop work, and one bug fix (can you find it? <g>)Andrew Arnott2010-06-073-11/+10
|
* Renamed WebApp facade classes to WebServer to match messages and flow name.Andrew Arnott2010-06-061-1/+1
|
* Renamed WebApp messages to WebServer to match OAuth 2.0 flow names.Andrew Arnott2010-06-061-2/+2
|
* OAuth 2.0 web flow now works, client, auth server, and resource server, in ↵Andrew Arnott2010-06-022-13/+42
| | | | | | the sample! Yay.
* Fixed whitespace.Andrew Arnott2010-06-021-2/+2
|
* Access tokens are now asymmetrically encrypted for resource server ↵Andrew Arnott2010-06-021-1/+1
| | | | | | consumption and signed from the auth server. Refresh tokens and verification codes are signed and encrypted using a private auth server symmetric secret.
* Added capability to use asymmetric signing for the access token so that ↵Andrew Arnott2010-06-011-2/+10
| | | | | | resource servers don't have the ability to mint access tokens. But resource servers can still mint verification codes and refresh tokens since they are signed using the shared secret, so that needs to be fixed.
* Lots of refactoring as we gather the token handling into centralized code.Andrew Arnott2010-05-311-0/+6
|
* Added authorizing user to the verification code.Andrew Arnott2010-05-311-5/+15
| | | | The username is encrypted to avoid disclosing data to the client or a third party.
* More work toward a working authorization server.Andrew Arnott2010-05-311-32/+14
|
* Fixed build break.Andrew Arnott2010-05-301-1/+8
|
* Work toward an OAuth 2.0 Web Server flow auth server.Andrew Arnott2010-05-292-0/+57
|
* Updated OAuth C and SP samples to use standard WAP namespaces.Andrew Arnott2010-04-1918-2529/+1491
|
* Converted the OAuth consumer and SP sample web site projects to web ↵Andrew Arnott2010-04-1818-0/+3081
application projects.