Sample code for 30+ languages & platforms
Rust

hacienda.go.cr Refrescar un Token

See more hacienda.go.cr Examples

Refreshes an access token for the Recepción de Comprobantes Electrónicos del Ministerio de Hacienda (Costa Rica)

Chilkat Rust Downloads

Rust

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// It is assumed we previously obtained an OAuth2 access token.
// This example loads the JSON access token file 
// saved by this example: Get hacienda.co.cr OAuth2 Access Token

let json_token = chilkat::JsonObject::new();
if json_token.load_file("qa_data/tokens/hacienda_cr.json").is_err() {
    println!("Failed to load constantContact.json");
    return;
}

// The access token JSON looks like this:

// {
//   "access_token": "ey....",
//   "expires_in": 300,
//   "id_token": "ey....",
//   "not-before-policy": 0,
//   "refresh_expires_in": 1800,
//   "refresh_token": "ey...",
//   "session_state": "...",
//   "token_type": "bearer"
// }

let http = chilkat::Http::new();

// Implements the following CURL command:

// curl -X "POST" "https://idp.comprobanteselectronicos.go.cr/auth/realms/rut-stag/protocol/openid-connect/token" \
//  -H "Content-Type: application/x-www-form-urlencoded; charset=utf-8" \
//  --data-urlencode "client_id=api-stag" \
//  --data-urlencode "refresh_token=ey..." \
//  --data-urlencode "grant_type=refresh_token"

// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code

let req = chilkat::HttpRequest::new();
req.set_http_verb("POST");
req.set_path("/auth/realms/rut-stag/protocol/openid-connect/token");
req.set_content_type("application/x-www-form-urlencoded");
req.add_param("client_id", "api-stag");
req.add_param("refresh_token", &json_token.string_of("refresh_token").unwrap_or_default());
req.add_param("grant_type", "refresh_token");

let resp = chilkat::HttpResponse::new();
if http.http_req("https://idp.comprobanteselectronicos.go.cr/auth/realms/rut-stag/protocol/openid-connect/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)

// {
//   "access_token": "ey....",
//   "expires_in": 300,
//   "id_token": "ey....",
//   "not-before-policy": 0,
//   "refresh_expires_in": 1800,
//   "refresh_token": "ey...",
//   "session_state": "...",
//   "token_type": "bearer"
// }

// 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 access_token = j_resp.string_of("access_token").unwrap_or_default();
let expires_in = j_resp.int_of("expires_in");
let id_token = j_resp.string_of("id_token").unwrap_or_default();
let not_before_policy = j_resp.int_of("not-before-policy");
let refresh_expires_in = j_resp.int_of("refresh_expires_in");
let refresh_token = j_resp.string_of("refresh_token").unwrap_or_default();
let session_state = j_resp.string_of("session_state").unwrap_or_default();
let token_type = j_resp.string_of("token_type").unwrap_or_default();

// Save the new JSON access token response to a file.
let _ = j_resp.write_file("qa_data/tokens/haciendda_cr.json").is_ok();