$logo = "/assets/logo.jpg?v=$version"; $favicon = "/assets/favicon.png?v=$version"; function obterLive() { $apiKey = 'AIzaSyBP2rPMeavk_dy2CvolH_9_idwkiPsLecg'; // $channelId = 'UCRcRAyb5Y4x3HVNKBZ9SMLA'; $channelId = 'UCTRi7W4OE9Wk088vrmDAVIg'; $apiUrl = "https://www.googleapis.com/youtube/v3/search?part=snippet&channelId=$channelId&eventType=live&type=video&key=$apiKey"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $apiUrl); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch); $data = json_decode($response, true); if (!empty($data['items'])) { $video = $data['items'][0]; return [ 'videoId' => $video['id']['videoId'], 'title' => $video['snippet']['title'], 'description' => $video['snippet']['description'], 'thumbnail' => $video['snippet']['thumbnails']['high']['url'] ]; } return null; } $liveData = obterLive(); ?>