<?php
// TikTok video URL
$tiktok_url = "https://w...content-available-to-author-only...k.com/@maligoshik/video/7472584144510373125";

// Get the page content
$context = stream_context_create(array('http' => array('header' => 'User-Agent: Mozilla/5.0')));
$html = file_get_contents($tiktok_url, false, $context);

// Extract the thumbnail URL from Open Graph meta tag
preg_match('/<meta property="og:image" content="(.*?)"/', $html, $matches);
$thumbnail_url = $matches[1] ?? 'https://v...content-available-to-author-only...r.com/300x400?text=No+Thumbnail';

// Display the thumbnail
echo '<img src="'.$thumbnail_url.'" alt="TikTok Thumbnail" style="max-width:100%; height:auto;">';
?>
