tokkit 0.1.0

A simple OAUTH toolkit.
Documentation

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.

use tokkit::*;
use tokkit::token_info::*;

let builder = RemoteTokenInfoServiceBuilder::google_v3();
let service = builder.build().unwrap();

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

let tokeninfo = service.get_token_info(&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