inth-oauth2/examples/github.rs

28 lines
688 B
Rust
Raw Normal View History

2017-08-23 06:39:49 +00:00
extern crate reqwest;
2015-12-22 04:34:38 +00:00
extern crate inth_oauth2;
2015-12-24 19:44:06 +00:00
use std::io;
2015-12-26 01:23:48 +00:00
use inth_oauth2::Client;
2015-12-22 04:34:38 +00:00
use inth_oauth2::provider::GitHub;
fn main() {
2017-10-14 17:56:07 +00:00
let http_client = reqwest::Client::new();
2017-06-05 00:05:30 +00:00
2017-08-23 18:09:05 +00:00
let client = Client::new(
GitHub,
2016-01-29 02:54:14 +00:00
String::from("01774654cd9a6051e478"),
String::from("9f14d16d95d605e715ec1a9aecec220d2565fd5c"),
2017-08-23 18:09:05 +00:00
Some(String::from("https://cmcenroe.me/oauth2-paste/")),
2015-12-22 04:34:38 +00:00
);
2017-09-26 18:37:21 +00:00
let auth_uri = client.auth_uri(Some("user"), None);
2015-12-22 04:34:38 +00:00
println!("{}", auth_uri);
2015-12-24 19:44:06 +00:00
let mut code = String::new();
io::stdin().read_line(&mut code).unwrap();
2017-08-23 06:39:49 +00:00
let token = client.request_token(&http_client, code.trim()).unwrap();
2015-12-24 19:44:06 +00:00
println!("{:?}", token);
2015-12-22 04:34:38 +00:00
}