## li3 Oauth
a Lithium plugin for [Oauth ](http://oauth.net/core/1.0a)
- place the plugin in your app/libraries
- add the plugin to your bootstrap
{{{
Libraries::add('li3_oauth');
}}}
### routes
3 routes are added
- /oauth : will direct you to `ServerController::account()`
- /oauth/client/:action : will provide access to the `ClientController`
- /oauth/:action : will handle requests to `ServerController`
### Client
The `ClientController` is a sample client that shows the basic flow of gaining authorization to a Provider. By default the client points at the li3_oauth server.
### Provider
still has some work to go. only supporting the request token at the moment