Rust
Rust
RSAP Union API - Get Members Status
See more _Miscellaneous_ Examples
Demonstrates how to use an OAuth2 access token for the RSAP Union API. Calls the endpoint to get the statuses of all union members.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();
// Load the access token previously obtained by this example: RSAP Union OAuth2
let j_token = chilkat::JsonObject::new();
if j_token.load_file("qa_data/tokens/rsapToken.json").is_err() {
println!("Failed to load access token JSON.");
return;
}
// Adds the "Authorization: Bearer ACCESS_TOKEN" header.
http.set_auth_token(&j_token.string_of("access_token").unwrap_or_default());
// For authentication, assuming both the client cert and access token are needed???
let cert = chilkat::Cert::new();
if cert.load_from_file("qa_data/certs_and_keys/union_client_certificate.crt").is_err() {
println!("{}", cert.last_error_text());
return;
}
let priv_key = chilkat::PrivateKey::new();
if priv_key.load_any_format_file("qa_data/certs_and_keys/union_client_certificate.nopass.key", "").is_err() {
println!("{}", priv_key.last_error_text());
return;
}
// Associate the private key with the cert.
// This will fail if the private key is not actually the correct one that corresponds to the public key stored within the cert.
if cert.set_private_key(&priv_key).is_err() {
println!("{}", cert.last_error_text());
return;
}
// Tell HTTP to use the cert for client TLS certificate authentication.
if http.set_ssl_client_cert(&cert).is_err() {
println!("{}", http.last_error_text());
return;
}
let sb_response_body = chilkat::StringBuilder::new();
if http.quick_get_sb("https://api-test.rsap.ca/members/status", &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;
}