tokkit

WORK IN PROGRESS

tokkit is a simple token toolkit for OAUTH2 authorization.

Documentation

The documentation is available online.

Verify Access Tokens

tokkit contains a module token_info for protected resources to verify access tokens.

```rust,norun use tokkit::*; use tokkit::tokeninfo::*; let builder = RemoteTokenInfoServiceBuilder::google_v3(); let service = builder.build().unwrap();

let token = AccessToken::new("");

let tokeninfo = service.gettokeninfo(&token).unwrap(); ```

Managing Tokens

To be done....

License

tokkit is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0). Copyright (c) 2017 Christian Douven