$id, ); } return false; } public function getData($parsed) { $video_id = $parsed['video_id']; // adding v3 APi google (https://www.googleapis.com/youtube/v3/videos?id=&key=&part=snippet // $buffer = file_get_contents('https://gdata.youtube.com/feeds/api/videos/'.$video_id); $buffer = file_get_contents('https://www.youtube.com/oembed?url=https://www.youtube.com/watch?v='.$video_id.'&format=xml'); $xml = new SimpleXMLElement($buffer); return array( 'title' => $xml->title, // 'description' => strip_tags($xml->content), 'thumbnail' => "https://img.youtube.com/vi/$video_id/default.jpg", ); } }