Запрос служит для контроля состояния процесса асинхронного дешифрования. Если процесс находится в стадии выполнения будет возвращен HTTP статус код 202, в случае успешного завершения - 200. В остальных случаях возвращаются соответствующие коды из серий 4хх и 5хх.
URL-адрес запроса
https://crypto.ccs.cipher.kiev.ualocalhost:9094/api/v1/ticket/{uuid}/decryptor
...
Code Block | ||
---|---|---|
| ||
$.ajax({ url: "https://crypto.css.cipher.kiev.ualocalhost:9094/api/v1/ticket/79343564-147f-4a2a-ac2a-182d7a55f802/decryptor", type: "GET", dataType: "json", cache: false }).done(function (jsonResponse, textStatus, xhr) { message = jsonResponse.message; }).fail(function (xhr) { try { var jsonResponse = JSON.parse(xhr.responseText); message = jsonResponse.message; failureCause = jsonResponse.failureCause; } catch (e) { message = (xhr.responseText == undefined) ? "Ошибка при получении результата дешифрования." : xhr.responseText; } }) |
...