fobe-web/html_versioncompatibility/GetAllowedMD5Hashes.php

17 lines
277 B
PHP

<?php
use Alphaland\Web\WebContextManager;
if (!WebContextManager::VerifyAccessKeyHeader())
{
die(http_response_code(401));
}
header('Content-Type: application/json');
echo json_encode(array(
"data" => array(
$ws->md5_hash
)
), JSON_UNESCAPED_SLASHES);