Rust
Rust
hacienda.go.cr Obtener Token
See more hacienda.go.cr Examples
Gets an access token using the Resource Owner Password Credential Grant for the Recepción de Comprobantes Electrónicos del Ministerio de Hacienda (Costa Rica)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 -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 "username=cpj-3-101-261506@stag.comprobanteselectronicos.go.cr" \
// --data-urlencode "password=my_password" \
// --data-urlencode "grant_type=password"
// 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("username", "cpj-3-101-261506@stag.comprobanteselectronicos.go.cr");
req.add_param("password", "my_password");
req.add_param("grant_type", "password");
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 JSON to a file for future requests.
let fac = chilkat::FileAccess::new();
let _ = fac.write_entire_text_file("qa_data/tokens/hacienda_cr.json", &j_resp.emit().unwrap_or_default(), "utf-8", false);