我使用這個代碼來顯示用戶的所有影片在我的網站:的Youtube獲取用戶的視頻的ID在API V3 PHP
<?php
$xml = simplexml_load_file('http://gdata.youtube.com/feeds/api/users/XXXXXXX/uploads');
$server_time = $xml->updated;
$return = array();
foreach ($xml->entry as $video) {
$vid = array();
$vid['id'] = substr($video->id,42);
$vid['title'] = $video->title;
array_push($return, $vid);
}
?>
<h2>Video Gallery</h2>
<?php
foreach($return as $video) {
?>
<div class="col-md-4">
<div style="height: auto;" class="featured-box featured-box-secundary">
<div class="box-content clearfix">
<h4><?= $video['title'] ?></h4>
<iframe width="270" height="203" src="https://www.youtube.com/embed/<?=$video['id']?>?rel=0&showinfo=0" allowfullscreen></iframe>
</div></div></div>
<?php
}
?>
但我收到了已過時的通知。我可以如何使用API v3將$ vid ['id']和$ vid ['title']放入HTML中?
請告訴我的'$返回輸出'?你得到了哪些不贊成的通知? – Alex
該通知是youtube與info中的額外視頻。 –