YouTube APIを使用して動画を埋め込んだ時にコンソールに下記のようなエラーが出てしまいます。
** エラーメッセージ1 **
Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('https://www.youtube.com') does not match the recipient window's origin ('http://localhost').
** エラーメッセージ2 **
Error parsing header X-XSS-Protection: 1; mode=block; report=https://www.google.com/appserve/security-bugs/log/youtube: insecure reporting URL for secure page at character position 22. The default protections will be applied.
調べてみると下記サイトを見つけたのでできる範囲で試してみたのですが、やり方が違うのか解決できませんでした。
エラーをなくすためにはどのような対策を入れる必要があるでしょうか?
現在使用している埋め込み用のJavascriptは下記です。
Javascript
1var youtube_ID = $('#sample').data("video"); 2 3var tag = document.createElement('script'); 4tag.src = "https://www.youtube.com/iframe_api"; 5var firstScriptTag = document.getElementsByTagName('script')[0]; 6firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); 7 8var playerReady = false; 9function onPlayerReady(event) { 10 playerReady = true; 11} 12 13function onYouTubeIframeAPIReady() { 14 ytPlayer = new YT.Player ('sample', { 15 width: 640, 16 height: 390, 17 videoId: youtube_ID, 18 playerVars: { 19 rel: 0, 20 autoplay: 0, 21 showinfo: 0, 22 }, 23 events: { 24 'onReady': onPlayerReady 25 } 26 }); 27} 28 29$(function() { 30 $('.yt_btn').click(function() { 31 if(playerReady) { 32 ytPlayer.playVideo(); 33 $(this).addClass('yt_play'); 34 } 35 }); 36});
HTML
1<div id="sample01" class="ytBtn"> 2 <div id="sample"></div> 3</div>
また、このエラーはYouTube Player API リファレンスのページやYouTube APIの埋め込み方の紹介ページにもでていることがあるようですが、頻発するものなのでしょうか?
ご教示いただけますと幸いです。
何卒よろしくお願いいたします。

回答4件
あなたの回答
tips
プレビュー