Sample code for 30+ languages & platforms
Rust

Isabel Connect Create Access Token given Valid Refresh Token

See more Ibanity Examples

Create (refresh) an access token given a valid refresh 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/token \
// --cert certificate.pem:qwertyuiop1 \
// --key private_key.pem  \
// -H "Content-Type: application/x-www-form-urlencoded" \
// -H "Accept: application/vnd.api+json" \
// -H "Ibanity-Idempotency-Key: 94c5586e-e15e-4bae-a1fe-fdbefe1f11d3"  \
// -d grant_type=refresh_token \
// -d refresh_token=valid_refresh_token \
// -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/token");
req.set_content_type("application/x-www-form-urlencoded");
req.add_param("grant_type", "refresh_token");

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

req.add_param("refresh_token", &json_token.string_of("refresh_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 crypt = chilkat::Crypt2::new();
let idempotency_key = crypt.generate_uuid().unwrap_or_default();
println!("Ibanity-Idempotency-Key: {}", idempotency_key);
req.add_header("Ibanity-Idempotency-Key", &idempotency_key);

let resp = chilkat::HttpResponse::new();
if http.http_req("https://api.ibanity.com/isabel-connect/oauth2/token", &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 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 = resp.status_code();
println!("Response Status Code = {}", resp_status_code);
if resp_status_code >= 400 {
    println!("Response Header:");
    println!("{}", resp.header());
    println!("Failed.");
    return;
}

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// Notice that we don't get a new refresh token.  The original refresh token is used each time we
// want to refresh.  However, we get a new access token.  This access token is to be used in Isabel API calls
// until we need to refresh again.
// {
//   "token_type": "Bearer",
//   "scope": "cloudconnect",
//   "expires_in": 1799,
//   "access_token": "access_token_1603365408"
// }

// 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 token_type = j_resp.string_of("token_type").unwrap_or_default();
let scope = j_resp.string_of("scope").unwrap_or_default();
let expires_in = j_resp.int_of("expires_in");
let access_token = j_resp.string_of("access_token").unwrap_or_default();

// Save this to a file so we can load in other examples to include the access token in the HTTP request.
let _ = j_resp.write_file("qa_data/tokens/isabel_access_token.json").is_ok();