inth-oauth2-azure

Crates.iointh-oauth2-azure
lib.rsinth-oauth2-azure
version0.1.0
sourcesrc
created_at2018-11-30 12:21:45.761301
updated_at2018-11-30 12:21:45.761301
descriptionAzure Active Directory (OpenID Connect) support for the inth-oauth2 crate
homepage
repositoryhttps://github.com/ccakes/inth-oauth2-azure
max_upload_size
id99376
size7,296
Cameron Daniel (ccakes)

documentation

README

inth-oauth2-azure

This provides Azure Active Directory (OpenID Connect) support for the inth-oauth2 crate.

Example

extern crate inth_oauth2 as oauth;
extern crate inth_oauth2_azure;

use inth_oauth2_azure::AzureCommon;

let client = oauth::Client::new(
    AzureCommon,
    "client-id".into(),
    "client-secret".into(),
    Some("redirect-uri".into())
);
Commit count: 0

cargo fmt