<?php
function get_youtube_title($video_id){
$html = 'https://www.googleapis.com/youtube/v3/videos?id='.$video_id.'&key=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx&part=snippet,statistics';
$response = file_get_contents($html);
$decoded = json_decode($response, true);
echo "<pre>";
print_r($decoded);
echo "</pre>";
foreach ($decoded['items'] as $items) {
$title= $items['snippet']['title'];
return $title;
}
}
echo $title = get_youtube_title('6kTGlADNy7g');
?>
Require: Google API Key
Refere this link for more part, like:snippet,statistics,topicDetails etc
https://developers.google.com/youtube/v3/docs/videos/list
function get_youtube_title($video_id){
$html = 'https://www.googleapis.com/youtube/v3/videos?id='.$video_id.'&key=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx&part=snippet,statistics';
$response = file_get_contents($html);
$decoded = json_decode($response, true);
echo "<pre>";
print_r($decoded);
echo "</pre>";
foreach ($decoded['items'] as $items) {
$title= $items['snippet']['title'];
return $title;
}
}
echo $title = get_youtube_title('6kTGlADNy7g');
?>
Require: Google API Key
Refere this link for more part, like:snippet,statistics,topicDetails etc
https://developers.google.com/youtube/v3/docs/videos/list
No comments:
Post a Comment