Sample code for 30+ languages & platforms
Rust

Aruba Fatturazione Elettronica signin

See more Aruba Fatturazione Examples

The method is used to request a security token. This token is required to invoke the methods of the various Electronic Invoicing servers (Resource Servers) that are protected by the system.

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://auth.fatturazioneelettronica.aruba.it/auth/signin \
//   -H "Content-Type: application/x-www-form-urlencoded;charset=UTF-8" \
//   -d 'grant_type=password&username=Utente&password=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/signin");
req.set_content_type("application/x-www-form-urlencoded");
req.add_param("grant_type", "password");
req.add_param("username", "Utente");
req.add_param("password", "Password");

let resp = chilkat::HttpResponse::new();
if http.http_req("https://auth.fatturazioneelettronica.aruba.it/auth/signin", &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": "29dba5b2e749e403",
//   "token_type": "bearer",
//   "expires_in": 1800,
//   "refresh_token": "5da9e6c31c8b9b24",
//   "userName": "Utente",
//   "as:client_id": "Auth",
//   ".issued": "Fri, 10 Jul 2020 07:20:00 GMT",
//   ".expires": "Fri, 10 Jul 2020 07:50:00 GMT"
// }

// 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 token_type = j_resp.string_of("token_type").unwrap_or_default();
let expires_in = j_resp.int_of("expires_in");
let refresh_token = j_resp.string_of("refresh_token").unwrap_or_default();
let user_name = j_resp.string_of("userName").unwrap_or_default();
let as_client_id = j_resp.string_of("as:client_id").unwrap_or_default();
let v_issued = j_resp.string_of("\".issued\"").unwrap_or_default();
let v_expires = j_resp.string_of("\".expires\"").unwrap_or_default();