Horje

How to extract image from Youtube V3 API

Here just change api key and video id at following. Example: https://www.googleapis.com/youtube/v3/videos?key=YOUR_API_KEY&part=snippet&id=VIDEO_ID
index.php
Example: PHP
<?php
$data = file_get_contents("https://www.googleapis.com/youtube/v3/videos?key=YOUR_API_KEY&part=snippet&id=T0Jqdjbed40");
$json = json_decode($data);
var_dump($json->items[0]->snippet->thumbnails);
?>

Output should be:

How to extract image from Youtube V3 API



Related Articles
How to get a YouTube video thumbnail from the YouTube API PHP Video Tutorial


Type:
Php
Category:
Web Tutorial
Sub Category:
PHP Video Tutorial
Uploaded by:
Admin



Share on: