Rust
Rust
MedTunnel: Login User
See more MedTunnel Examples
Authenticate and create a session for the User. This gets a user token to be used in the Authorization header for other API calls.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 PUT -k
// -H "Content-Type: application/json"
// -d '{ "MedTunnelId":"yourMedTunnelId@yourGroup",
// "Password":"yourPassword",
// "ApplicationId":"yourApplicationId",
// "LocationId":"yourLocationId",
// "ExpirationInMinutes":"50"
// }'
// https://server.medtunnel.com/MedTunnelSvc/api/Authenticate/LoginUser
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "MedTunnelId": "yourMedTunnelId@yourGroup",
// "Password": "yourPassword",
// "ApplicationId": "yourApplicationId",
// "LocationId": "yourLocationId",
// "ExpirationInMinutes": "50"
// }
let json = chilkat::JsonObject::new();
let _ = json.update_string("MedTunnelId", "yourMedTunnelId@yourGroup");
let _ = json.update_string("Password", "yourPassword");
let _ = json.update_string("ApplicationId", "yourApplicationId");
let _ = json.update_string("LocationId", "yourLocationId");
let _ = json.update_string("ExpirationInMinutes", "50");
http.set_request_header("Content-Type", "application/json");
let sb_request_body = chilkat::StringBuilder::new();
let _ = json.emit_sb(&sb_request_body);
let resp = chilkat::HttpResponse::new();
if http.http_sb("PUT", "https://server.medtunnel.com/MedTunnelSvc/api/Authenticate/LoginUser", &sb_request_body, "utf-8", "application/json", &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)
// {
// "ReturnCode": 1,
// "ReturnCodeText": "Success",
// "Data": "{\"UserId\":36990,\"UserTypeId\":1, ... \"UserRole\":\"Account Admin\"}"
// }
// 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 return_code = j_resp.int_of("ReturnCode");
let return_code_text = j_resp.string_of("ReturnCodeText").unwrap_or_default();
let data = j_resp.string_of("Data").unwrap_or_default();
// Load the Data into another JSON object and parse..
let json_data = chilkat::JsonObject::new();
let _ = json_data.load(&data);
json_data.set_emit_compact(false);
println!("{}", json_data.emit().unwrap_or_default());
// Sample result.
// {
// "UserId": 36990,
// "UserTypeId": 1,
// "UserTypeDesc": "Single Provider",
// "Token": "MT 730DCA95-2B86-4A91-994E-99995B1A6FC1:9999952A-C6DA-4FB5-83D6-9999E880B4A2:50:/hc3CTWCS0kNMxZXTWR4NQ==:tev2vAToTCrnuyT6rxyCgQ==:sAYcvgPoIfaaCF0+gdeSD1GFcYk=",
// "MailboxId": 36965,
// "UserRole": "Account Admin"
// }
let token = json_data.string_of("Token").unwrap_or_default();
println!("Token: {}", token);