Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixes StyleCop errors. | Andrew Arnott | 2012-12-24 | 1 | -6/+6 |
| | |||||
* | Verifies that client credential grants receive approved scope in response. | Andrew Arnott | 2012-12-24 | 1 | -0/+28 |
| | | | | Closes #242 | ||||
* | Authorization servers can override the granted scopes for all grant types. | Andrew Arnott | 2012-10-30 | 1 | -2/+2 |
| | | | | | | This change adds the ability for authorization servers to override the granted scopes of client credential and resource owner password grant types. Fixes #225 | ||||
* | Adds ClientBase.CreateAuthorizingHandler | Andrew Arnott | 2012-09-26 | 1 | -0/+42 |
| | | | | | | This method creates an HttpMessageHandler that automatically applies the OAuth 2 access token (bearer) to all outbound HTTP requests. Fixes #205 | ||||
* | Fixed failing ClientCredentialGrant unit test | Andrew Arnott | 2012-05-29 | 1 | -0/+3 |
| | |||||
* | Anonymous clients can now exchange resource owner credentials for refresh ↵ | Andrew Arnott | 2012-04-22 | 1 | -3/+18 |
| | | | | | | | | and access tokens. (authenticated clients already could). Fixes #100 | ||||
* | We have HTTP Basic client authentication working now in OAuth 2. | Andrew Arnott | 2012-04-18 | 1 | -0/+1 |
| | |||||
* | Access token endpoint now can respond with appropriate errors. | Andrew Arnott | 2012-03-14 | 1 | -11/+3 |
| | |||||
* | Replaced API requirements for HttpRequestInfo with HttpRequestBase (new in ↵ | Andrew Arnott | 2012-03-05 | 1 | -0/+1 |
| | | | | | | .NET 3.5 SP1). This makes us more friendly to MVC as well as mock-based unit testing. | ||||
* | Migrated OAuth 2 tests to the new NUnit Assert syntax. | Andrew Arnott | 2012-02-25 | 1 | -7/+7 |
| | |||||
* | Changed all uses of [TestCase] to [Test] to better emulate recommended NUnit ↵ | Andrew Arnott | 2012-02-25 | 1 | -3/+3 |
| | | | | patterns. | ||||
* | Added scopes to the tested authorization flows. | Andrew Arnott | 2012-02-25 | 1 | -4/+5 |
| | |||||
* | Renamed ObtainClientAccessToken. | Andrew Arnott | 2012-02-25 | 1 | -1/+1 |
| | |||||
* | Added client credential grant type support and a test to prove it. | Andrew Arnott | 2012-02-25 | 1 | -0/+25 |
| | | | | Fixes #33 | ||||
* | Adds support for the resource owner password credential grant. | Andrew Arnott | 2012-02-24 | 1 | -1/+1 |
| | | | | Fixes #72 | ||||
* | Added basic test for resource owner password authorizatino request. Not yet ↵ | Andrew Arnott | 2012-02-23 | 1 | -2/+21 |
| | | | | passing. | ||||
* | Added assertions about whether the client is authenticated. | Andrew Arnott | 2012-02-21 | 1 | -0/+3 |
| | |||||
* | Added two more OAuth2 unit tests, for the UserAgentClient class. | Andrew Arnott | 2012-02-21 | 1 | -0/+42 |