Sample code for 30+ languages & platforms
Rust

Isabel Connect Revoke Access Token

See more Ibanity Examples

Revokes an access token.

Chilkat Rust Downloads

Rust

// 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 -X POST https://api.ibanity.com/isabel-connect/oauth2/revoke \
// --cert certificate.pem:qwertyuiop1 \
// --key private_key.pem  \
// -H "Content-Type: application/x-www-form-urlencoded" \
// -H "Accept: application/vnd.api+json"  \
// -d token=8787 \
// -d client_id=valid_client_id \
// -d client_secret=valid_client_secret 

// Ibanity provides the certificate + private key in PFX format.  This example will use the .pfx instead of the pair of PEM files.
// (It is also possible to implement using Chilkat with the PEM files, but PFX is easier.)
let cert = chilkat::Cert::new();
if cert.load_pfx_file("qa_data/pfx/my_ibanity_certificate.pfx", "my_pfx_password").is_err() {
    println!("{}", cert.last_error_text());
    return;
}

if http.set_ssl_client_cert(&cert).is_err() {
    println!("{}", http.last_error_text());
    return;
}

let req = chilkat::HttpRequest::new();
req.set_http_verb("POST");
req.set_path("/isabel-connect/oauth2/revoke");
req.set_content_type("application/x-www-form-urlencoded");

// Load the previously obtained access token.
let json_token = chilkat::JsonObject::new();
if json_token.load_file("qa_data/tokens/isabel_access_token.json").is_err() {
    println!("No existing access token.");
    return;
}

req.add_param("token", &json_token.string_of("access_token").unwrap_or_default());

// Note: For sandbox testing, we literally want to use the strings
// "valid_client_id", and "valid_client_secret".
// For the live app, you would replace these with actual values.
req.add_param("client_id", "valid_client_id");
req.add_param("client_secret", "valid_client_secret");

req.add_header("Accept", "application/vnd.api+json");

let resp = chilkat::HttpResponse::new();
if http.http_req("https://api.ibanity.com/isabel-connect/oauth2/revoke", &req, &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

let sb_response_body = chilkat::StringBuilder::new();
let _ = resp.get_body_sb(&sb_response_body);

let resp_status_code = resp.status_code();
println!("Response Status Code = {}", resp_status_code);
if resp_status_code >= 400 {
    println!("Response Header:");
    println!("{}", resp.header());
    println!("Failed.");
    return;
}

println!("Response Body:");
println!("{}", sb_response_body.get_as_string().unwrap_or_default());

// If successful, the response status code = 200, and the response body is "{}"