Launch Library test

by Csaba Hellinger

JavaScript

$.ajax({
    type: "POST",
    url: "https://launchlibrary.net/1.0/launch/get",
    data: JSON.stringify({mode: "verbose"}),
    success: function onSuccess(data) {
        console.log(data);
    },
    error: function onError(jqXHR, textStatus, errorThrown) {
        console.error(textStatus, errorThrown);
    },
    dataType: "json"
});