You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Запит для отримання ЕП у вигляді двійкових даних.

URL-адреса запиту

https://localhost:9092/api/v1/ticket/{uuid}/ds/data

Метод

GET

Параметри запиту
uuidStringІдентифікатор сесії
Налаштовувані заголовки запиту

Відсутні

Відповідь
Код відповідіContent-typeДопустимі параметриПриклад вмісту
200application/octet-stream


503application/jsonmessage
{
   "message" : "Сервіс зберігання даних не запущено."
}
400application/jsonmessage
{
   "message" : "Сесія відсутня."
}
Параметри JSON обʼєкта відповіді
ПараметрТип данихОпис
messageStringОпис результату проведення операції
Приклад коду на JavaScript
var xhr = new XMLHttpRequest();
var requestUrl = "https://localhost:9092/api/v1/ticket/79343564-147f-4a2a-ac2a-182d7a55f802/ds/data";
xhr.open("GET", requestUrl);
xhr.responseType = "blob";
xhr.onload = function() {
    if (xhr.status == 200) {
        dsData = xhr.response;
        message = "Дані ЕП успішно отримані.";
    } else {
        var reader = new FileReader();
        reader.onload = function() {
            var response = reader.result;
            try {
                var jsonResponse = JSON.parse(xhr.responseText);
                message = jsonResponse.message;
            } catch (e) {
                message = (xhr.responseText == undefined) ? "Помилка при отриманні даних ЕП." : xhr.responseText;
            }
        }
        reader.readAsText(xhr.response);
    }
};
xhr.send();


  • No labels