Данные YouTube от API v2 до v3

Это то, что я использовал на своем веб-сайте, чтобы показать мои 2 аккаунта последние видео.
Но больше не будет работать, потому что Google изменил api v3 данных api youtube.

Я понятия не имею, как это исправить. Я пытался изучить новую систему, но было слишком много ошибок.

Я не писал этот код, друг сделал. И он скончался пару месяцев назад. Так что я застрял.

где я использовал v3, ссылка должна быть https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults = 50&playlistId = UUFllMgwJeO047KMkF_y4jow&ключ = AIzaSyD05SHXPPLNEUaSbWKwKL2Uam0oH0GGq-U

Но я понял
Предупреждение: simplexml_load_file (): сбой операции SSL с кодом 1. Сообщения об ошибках OpenSSL: ошибка: 14090086: подпрограммы SSL: SSL3_GET_SERVER_CERTIFICATE: сбой проверки сертификата в

Моя страница = spel.stajlplejs.com/test/demo1/blog.php

Так должно себя вести http://i.imgur.com/BDvBLIE.png

Новый с v3

$youtube_videos = array();
$active = "all";
$channels = array('UUFllMgwJeO047KMkF_y4jow', 'UUWy8jDk2k93E0c6iGdMnt_A');
if (in_array($_GET['channel'], $channels)) {
$channels = array($_GET['channel']);
$active = $_GET['channel'];
}
$today = time();
$timetest = strtotime("-6 months", $today);
foreach ($channels as $channeld) {
$xmlresultsup = simplexml_load_file('https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=50&playlistId='.$channeld.'&key=AIzaSyD05SHXPPLNEUaSbWKwKL2Uam0oH0GGq-U');
if ($err || $xmlresultsup->Error) {
$errorMsg = $xmlresultsup->Error->Message;
} else {
foreach($xmlresultsup->channel->item as $item) {
$videotime = strtotime($item->pubDate);
if($timetest < $videotime) {
$youtube_videos[$videotime][] = $item;
}
}
}
}
krsort($youtube_videos);
?>
<div class="blog_top">
<div class="blog_top_menu all<?php if($active == "all"): ?> active<?php endif; ?>"><a href="http://www.matthewlush.com/blog"><span>All</span></a></div>
<div class="blog_top_menu channel1<?php if($active == "UUFllMgwJeO047KMkF_y4jow"): ?> active<?php endif; ?>"><a href="http://www.matthewlush.com/blog/channel1"><span>Channel1</span></a></div>
<div class="blog_top_menu channel2<?php if($active == "UUWy8jDk2k93E0c6iGdMnt_A"): ?> active<?php endif; ?>"><a href="http://www.matthewlush.com/blog/channel2"><span>Channel2</span></a></div>
<div class="float_clear"></div>
</div>
<div class="blog_content">
<?php foreach($youtube_videos as $items):
foreach($items as $item):
$guid = $item->guid;
$pubDate = date("F j, Y", strtotime($item->pubDate));
$title = $item->title;
$link = $item->link;
$author = $item->author;

$media = $item->children('http://search.yahoo.com/mrss/');
$attrs = $media->group->thumbnail[0]->attributes();
$thumbnail = $attrs['url'];

$id = str_replace("http://gdata.youtube.com/feeds/api/videos/","", $guid);

?>
<div class="blog_content_entry">
<a href="<?php echo htmlentities($link, ENT_QUOTES, 'UTF-8'); ?>" target="_blank">
<div class="blog_content_entry_image" style="background-image:url('<?php echo htmlentities($thumbnail, ENT_QUOTES, 'UTF-8'); ?>')"></div>
<div class="blog_content_entry_description">
<div class="blog_content_entry_description_title"><span><?php echo htmlentities("New {$author} Video", ENT_QUOTES, 'UTF-8'); ?></span></div>
<div class="blog_content_entry_description_content"><span><?php echo htmlentities($title, ENT_QUOTES, 'UTF-8'); ?></span></div>
<div class="blog_content_entry_description_details">
<div class="blog_content_entry_description_details_link"><span>View Video</span></div>
<div class="blog_content_entry_description_details_date"><span><?php echo $pubDate; ?></span></div>
<div class="float_clear"></div>
</div>
</div>
</a>
</div>
<?php endforeach; endforeach; ?>
<div class="float_clear"></div>
</div>
<?php

?>

Старый

   <?php
$page = "blog";
include_once "header.php";

$youtube_videos = array();
$active = "all";
$channels = array('channel1', 'channel2');
if (in_array($_GET['channel'], $channels)) {
$channels = array($_GET['channel']);
$active = $_GET['channel'];
}
$today = time();
$timetest = strtotime("-6 months", $today);
foreach ($channels as $channeld) {
$xmlresultsup =    simplexml_load_file('http://gdata.youtube.com/feeds/api/users/'.$channeld.'/uploads?v=1&alt=rss&max-results=50&blah='.$ran);
if ($err || $xmlresultsup->Error) {
$errorMsg = $xmlresultsup->Error->Message;
} else {
foreach($xmlresultsup->channel->item as $item) {
$videotime = strtotime($item->pubDate);
if($timetest < $videotime) {
$youtube_videos[$videotime][] = $item;
}
}
}
}
krsort($youtube_videos);
?>
<div class="blog_top">
<div class="blog_top_menu all<?php if($active == "all"): ?> active<?php endif; ?>"><a href="http://www.website.com/blog"><span>All</span></a></div>
<div class="blog_top_menu channel1<?php if($active == "channel1"): ?> active<?php endif; ?>"><a href="http://www.website.com/blog/channel1"><span>GayGod</span></a></div>
<div class="blog_top_menu channel2<?php if($active == "channel2"): ?> active<?php endif; ?>"><a href="http://www.website.com/blog/channel2"><span>Lush</span></a></div>
<div class="float_clear"></div>
</div>
<div class="blog_content">
<?php foreach($youtube_videos as $items):
foreach($items as $item):
$guid = $item->guid;
$pubDate = date("F j, Y", strtotime($item->pubDate));
$title = $item->title;
$link = $item->link;
$author = $item->author;

$media = $item->children('http://search.yahoo.com/mrss/');
$attrs = $media->group->thumbnail[0]->attributes();
$thumbnail = $attrs['url'];

$id = str_replace("http://gdata.youtube.com/feeds/api/videos/","", $guid);

?>
<div class="blog_content_entry">
<a href="<?php echo htmlentities($link, ENT_QUOTES, 'UTF-8'); ?>" target="_blank">
<div class="blog_content_entry_image" style="background-image:url('<?php echo htmlentities($thumbnail, ENT_QUOTES, 'UTF-8'); ?>')"></div>
<div class="blog_content_entry_description">
<div class="blog_content_entry_description_title"><span><?php echo htmlentities("New {$author} Video", ENT_QUOTES, 'UTF-8'); ?></span></div>
<div class="blog_content_entry_description_content"><span><?php echo htmlentities($title, ENT_QUOTES, 'UTF-8'); ?></span></div>
<div class="blog_content_entry_description_details">
<div class="blog_content_entry_description_details_link"><span>View Video</span></div>
<div class="blog_content_entry_description_details_date"><span><?php echo $pubDate; ?></span></div>
<div class="float_clear"></div>
</div>
</div>
</a>
</div>
<?php endforeach; endforeach; ?>
<div class="float_clear"></div>
</div>
<?php
include_once "footer.php";
?>

0

Решение

Для преобразования Youtube данных Api V2 в V3

Youtube Depricated V2 Libaray в 2014 году

Просто поменяйте ссылку

http://gdata.youtube.com/feeds/api/users/’.$channeld.’/uploads?v=1&альт = Новости&макс-результаты = 50&л =». $ RAN

Заменить

https://www.googleapis.com/youtube/v3/search?key=»Api Key «&channelId = «Идентификатор канала»&часть = фрагмент кода, идентификатор&порядок = дата&maxResults = 20

Вы можете создавать ссылки для получения плейлиста, видео и т. Д.

https://developers.google.com/youtube/v3/docs/

Пример кода для PHP здесь

https://developers.google.com/youtube/v3/code_samples/php

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]