0
YouTube API v3を使用して2016年3月から動画の再生時間($ vid_dur)を取得するために、以下のコードを使用しています。側。助言がありますか?ここで動画の再生時間がYouTube API v3で動作しない
<?php
$vidkey = "xxxxxxxxx" ;
$apikey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" ;
$dur = file_get_contents("https://www.googleapis.com/youtube/v3/videos?part=contentDetails&id=$vidkey&key=$apikey");
$VidDuration =json_decode($dur, true);
foreach ($VidDuration['items'] as $vidTime)
{
$VidDuration= $vidTime['contentDetails']['duration'];
}
// convert duration from ISO to M:S
$date = new DateTime('2000-01-01');
$date->add(new DateInterval($VidDuration));
$vid_durH= $date->format('H') ;
if ($vid_durH=="00") {
$vid_dur= $date->format('i:s') ;
}
else {
$vid_dur= $date->format('H:i:s') ;
}
?>
は、私はあなたのコードをテストしたエラーメッセージ
Fatal error: Uncaught exception 'Exception' with message 'DateInterval::__construct() [dateinterval.--construct]: Unknown or bad format()'
VidDurationをエコーして、DateIntervalがどのようなエラーをスローするかを確認します。 "code":400、 "message": – johnh10
{"エラー":{"エラー":[{"ドメイン": "使用制限"、 "理由": "キー無効"、 "メッセージ" "Bad Request"}} –
エラーメッセージにはkeyInvalidと表示されています。 – johnh10