Гастрономический компас
Виджет работает на домене putivator.ru, данные с сервера putivator.com. Серверный рендеринг, JSON-LD.
Код для вставки на ваш сайт
// Виджет «Гастрокомпас» — полный код с обработкой POST
$key = 'ваш_api_ключ';
$url = "https://putivator.com/widgets/gastro-compass.php?key={$key}";
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$postdata = http_build_query($_POST);
$context = stream_context_create([
'http' => [
'method' => 'POST',
'header' => "Content-Type: application/x-www-form-urlencoded\r\nReferer: https://ваш-домен.ru\r\n",
'content' => $postdata,
]
]);
echo file_get_contents($url, false, $context);
} else {
echo file_get_contents($url);
}