Rust
Rust
Get Google Account Info from OAuth2 Access Token
See more Google APIs Examples
In the Google OAuth2 authorization flow, an application can know the email address of the Google account used to authorize access by requesting and processing user information from the Google UserInfo endpoint after obtaining an access token.Chilkat Rust Downloads
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = chilkat::Http::new();
// Implements the following CURL command:
// curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN" https://www.googleapis.com/oauth2/v3/userinfo
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
// Adds the "Authorization: Bearer YOUR_ACCESS_TOKEN" header.
http.set_auth_token("YOUR_ACCESS_TOKEN");
let sb_response_body = chilkat::StringBuilder::new();
if http.quick_get_sb("https://www.googleapis.com/oauth2/v3/userinfo", &sb_response_body).is_err() {
println!("{}", http.last_error_text());
return;
}
let j_resp = chilkat::JsonObject::new();
let _ = j_resp.load_sb(&sb_response_body);
j_resp.set_emit_compact(false);
println!("Response Body:");
println!("{}", j_resp.emit().unwrap_or_default());
let resp_status_code = http.last_status();
println!("Response Status Code = {}", resp_status_code);
if resp_status_code >= 400 {
println!("Response Header:");
println!("{}", http.last_header());
println!("Failed.");
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "sub": "112233445678901234567",
// "name": "John Doe",
// "given_name": "John",
// "family_name": "Doe",
// "profile": "https://plus.google.com/112233445678901234567",
// "picture": "https://lh3.googleusercontent.com/a-/AOh14GiU-EXAMPLE",
// "email": "johndoe@example.com",
// "email_verified": true,
// "locale": "en"
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
let v_sub = j_resp.string_of("sub").unwrap_or_default();
let name = j_resp.string_of("name").unwrap_or_default();
let given_name = j_resp.string_of("given_name").unwrap_or_default();
let family_name = j_resp.string_of("family_name").unwrap_or_default();
let profile = j_resp.string_of("profile").unwrap_or_default();
let picture = j_resp.string_of("picture").unwrap_or_default();
let email = j_resp.string_of("email").unwrap_or_default();
let email_verified = j_resp.bool_of("email_verified");
let locale = j_resp.string_of("locale").unwrap_or_default();