Last active
February 9, 2020 14:02
-
-
Save loschke/b0fd3c1f434c5010006c448930686e94 to your computer and use it in GitHub Desktop.
Beispiel Scripte zum Blogbeitrag https://sevenx.de/tutorial-youtube-channel-playlist-videos-via-data-api-v3-auf-der-eigenen-website-ausgeben/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=50&playlistId={DEINE_PLAYLIST_ID}&fields=items%2Fsnippet&key={DEIN_API_KEY} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function get_data($url) | |
{ | |
$ch = curl_init(); | |
$timeout = 5; | |
curl_setopt($ch,CURLOPT_URL,$url); | |
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); | |
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout); | |
$data = curl_exec($ch); | |
curl_close($ch); | |
return $data; | |
} | |
$api = get_data("https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&playlistId={DEINE_PLAYLIST_ID}&maxResults=10&fields=items%2Fsnippet&key={DEIN_API_KEY}"); | |
$video = json_decode($api, true); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Schleife durch $video Array beginnend bei items | |
foreach($video['items'] as $video_data) { ?> | |
<div class="video-wrapper"> | |
<iframe | |
width="480" height="320" | |
src="https://www.youtube.com/embed/<?=$video_data['snippet']['resourceId']['videoId']?>" | |
frameborder="0" | |
allowfullscreen> | |
</iframe> | |
</div> | |
<?php } // Ende Foreach Schleife?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.video-wrapper { | |
float:left; | |
margin: 0 20px 20px 0; | |
} | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Schleife durch $video Array beginnend bei items | |
foreach($video['items'] as $video_data) { ?> | |
<div class="thumbnail-wrapper"> | |
<a href="http://www.youtube.com/watch?v=<?=$video_data['snippet']['resourceId']['videoId']?>" class="popup-youtube"> | |
<img src="<?=$video_data['snippet']['thumbnails']['medium']['url']?>" alt="..."> | |
</a> | |
<div class="caption"> | |
<p><strong><?=$video_data['snippet']['title']?></strong></p> | |
<p><a href="http://www.youtube.com/watch?v=<?=$video_data['snippet']['resourceId']['videoId']?>" class="popup-youtube">anschauen</a></p> | |
</div> | |
</div> | |
<?php } // Ende Foreach Schleife?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
/*simple Demo CSS */ | |
.thumbnail-wrapper { | |
width:320px; | |
padding: 3px; | |
border: 1px solid #ccc; | |
float:left; | |
margin: 0 20px 20px 0; | |
} | |
</style> | |
<!-- Lightbox Plugin --> | |
<link rel="stylesheet" type="text/css" href="magnific/magnific-popup.css"/> | |
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script> | |
<script type="text/javascript" src="magnific/magnific-popup.min.js"></script><!-- Lightbox Plugin --> | |
<script type="text/javascript"> | |
/* Lightbox initialisieren */ | |
$('.popup-youtube, .popup-vimeo, .popup-gmaps').magnificPopup({ | |
disableOn: 700, | |
type: 'iframe', | |
mainClass: 'mfp-fade', | |
removalDelay: 160, | |
preloader: false, | |
fixedContentPos: false | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment