$.ajax({
url: "https://crypto.ccs.cipher.kiev.ua:9093/api/v1/ticket/79343564-147f-4a2a-ac2a-182d7a55f802/encryptor/base64Data",
type: "GET",
dataType: "json",
cache: false
}).done(function (jsonResponse, textStatus, xhr) {
dsData = jsonResponse.base64Data;
message = "Зашифровані дані успішно отримано.";
}).fail(function (xhr) {
try {
var jsonResponse = JSON.parse(xhr.responseText);
message = jsonResponse.message;
} catch (e) {
message = (xhr.responseText == undefined) ? "Помилка при отриманні зашифрованих даних." : xhr.responseText;
}
}) |