PHP YouTube ビデオ フィードからビデオ タグを取得するのが困難です。
ビデオ タグ以外のすべてのビデオ プロパティを正常に取得できます。
私を助けてください、明けましておめでとうございます!
私のコードの一部は以下の通りです:
foreach ($videoFeed as $videoEntry ) {
if ( $count < 50) {
$vidtitle[$count] = $videoEntry->getVideoTitle();
$vidid[$count] = $videoEntry->getVideoId();
$vidcategory[$count] = $videoEntry->getVideoCategory();
$vidtags[$count] = implode(", ", $videoEntry->getVideoTags());
$vidwatchpage[$count] = $videoEntry->getVideoWatchPageUrl();
$vidduration[$count] = $videoEntry->getVideoDuration();
$vidviewcount[$count] = $videoEntry->getVideoViewCount();