28 lines
768 B
Rust
28 lines
768 B
Rust
extern crate reqwest;
|
|
extern crate inth_oauth2;
|
|
|
|
use std::io;
|
|
|
|
use inth_oauth2::Client;
|
|
use inth_oauth2::provider::google::Web;
|
|
|
|
fn main() {
|
|
let http_client = reqwest::Client::new();
|
|
|
|
let client = Client::new(
|
|
Web,
|
|
String::from("143225766783-0h4h5ktpvhc7kqp6ohbpd2sssqrap57n.apps.googleusercontent.com"),
|
|
String::from("7Xjn-vRN-8qsz3Zh9zZGkHsM"),
|
|
Some(String::from("https://cmcenroe.me/oauth2-paste/")),
|
|
);
|
|
|
|
let auth_uri = client.auth_uri(Some("https://www.googleapis.com/auth/userinfo.email"), None);
|
|
println!("{}", auth_uri);
|
|
|
|
let mut code = String::new();
|
|
io::stdin().read_line(&mut code).unwrap();
|
|
|
|
let token = client.request_token(&http_client, code.trim()).unwrap();
|
|
println!("{:?}", token);
|
|
}
|