2011-04-13 106 views
0

爲什麼不顯示youtube視頻? 我使用下面的代碼:爲什麼不顯示youtube視頻?

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<title>FriendsConnect | Find Friends</title> 
<!--Start FC online dependincies--> 
<script src="http://friendsconnect.org/jquery_custom/js/jquery-1.4.2.min.js" type="text/javascript"></script> 
<script src="http://friendsconnect.org/jquery_custom/js/jquery-ui-1.8.7.custom.min.js" type="text/javascript"></script> 
<link href="http://friendsconnect.org/jquery_custom/css/fc-blue/jquery-ui-1.8.7.custom.css" rel="stylesheet" type="text/css" /> 
<script type="text/javascript" src="../secure_serv/users/oembed/jquery.oembed.js"></script> 
<!--End FC online dependancies--> 
<script> 
$(document).ready(function() { 
    $("button").button(); 
    $(".radio").buttonset(); 

      $(".oembed").oembed("http://www.flickr.com/photos/[email protected]/345009210/"); 
    $("input:button").button(); 
    }); 
</script> 
    <style type="text/css"> 
     .style1 
     { 
      width: 83px; 
     } 
     .style2 
     { 
      width: 144px; 
     } 
     #Button1 
     { 
      font-size: 9px; 
     } 
     a:link { 
    text-decoration: none; 
    color: #000000; 
} 
a { 
    text-decoration: none; 
    color: #091419; 
} 
a:visited { 
    color: #091419; 
} 
a:hover { 
    text-decoration: underline; 
    color: #091419; 
} 
    </style> 
<style type="text/css"> 
html, 
body {background-color: transparent;} 
</style> 
</head> 
<body style="font-family: Arial, Helvetica, sans-serif;"> 
<a href="http://www.youtube.com/watch?v=INVdbXTuPVI&feature=feedu" class="oembed">ssss</a> 
<div id="container"></div> 
</body> 
</html> 

而由於某種原因,將不顯示嵌入式播放器。爲什麼是這樣?

回答

2

我認爲這是因爲一些視頻未啓用/ json啓用。

如果您嘗試嵌入http://www.youtube.com/watch?v=bDOYN-6gdRE,它可以正常工作。但您試圖嵌入的視頻http://www.youtube.com/watch?v=INVdbXTuPVI不起作用。

你得到401未經授權的第一鏈路和JSON數據下面的第二個鏈接:

http://www.youtube.com/oembed?url=http://www.youtube.com/watch?v=INVdbXTuPVI http://www.youtube.com/oembed?url=http://www.youtube.com/watch?v = bDOYN-6gdRE

有關詳細信息,請參閱http://core.trac.wordpress.org/ticket/14377

+0

你是對的,在我進一步研究之後,我發現視頻不可嵌入。 (如果這是一個字大聲笑) – 2011-04-13 20:55:55