Test Protected Codebook
🔒 PROTECTED by EXAMPLES YEAR AGOSome Protected Test codebook example
Test Example
const urlJson = 'https://dbcodebook.com/d/EA91AF91751F44C8B2A9594E82C60B56/json/';
var xhr = new XMLHttpRequest();
xhr.open('GET', urlJson, true);
xhr.responseType = 'json';
xhr.onload = function() {
if (xhr.status === 200) {
/* OK Response */
const dataJson = xhr.response;
console.log('Data:', dataJson);
} else {
/* Bad Response */
console.error(xhr.status, xhr.response);
}
};
xhr.send();