Vidéos

[insert_php]

$JSON = file_get_contents("https://www.googleapis.com/youtube/v3/search?order=date&part=snippet&channelId=UCds_Vv9VsGHkU9uIwGFhZQQ&type=video&key=AIzaSyDszZ9bl2WbeOu1Qsw2PUzK0VJQ8U74laA&maxResults=25");
$JSON_Data = json_decode($JSON, true);
$url = array('241',
'208',
'213',
'239',
'237',
'235',
'233',
'231',
'223',
'221',
'164');

foreach($JSON_Data["items"] as $key => $val)
{
$JSONstats = file_get_contents("https://www.googleapis.com/youtube/v3/videos?part=statistics&id=". $val['id']['videoId'] ."&key=AIzaSyDszZ9bl2WbeOu1Qsw2PUzK0VJQ8U74laA");
$stats = json_decode($JSONstats, true);

$photo = $val['snippet']['thumbnails']['default']['url'];
$views = $stats['items'][0]['statistics']['viewCount'];
$avis = $stats['items'][0]['statistics']['likeCount'];
$com = $stats['items'][0]['statistics']['commentCount'];
$titre = $val['snippet']['title'];
echo "

{$titre}
Nombre de vues : {$views}
Nombre d'avis positifs : {$avis}
Nombre de commentaires : {$com}

";
}

[/insert_php]