inth-oauth2/examples/google.rs

19 lines
430 B
Rust
Raw Normal View History

2015-11-28 08:36:13 +00:00
extern crate inth_oauth2;
use inth_oauth2::Client;
fn main() {
2015-11-28 09:14:12 +00:00
let client = Client::google(
"143225766783-ip2d9qv6sdr37276t77luk6f7bhd6bj5.apps.googleusercontent.com",
"3kZ5WomzHFlN2f_XbhkyPd3o",
Some("urn:ietf:wg:oauth:2.0:oob")
);
2015-11-28 08:36:13 +00:00
2015-11-28 09:14:12 +00:00
let auth_uri = client.auth_uri(
2015-11-28 08:36:13 +00:00
Some("https://www.googleapis.com/auth/userinfo.email"),
None
).unwrap();
println!("{}", auth_uri);
}