2013-08-02 68 views
1

我想要使用YouTube提供的JSON資訊提供,以特定方式顯示我的YouTube播放清單影片。但是,我很難在我的網頁上格式化它。誰能幫忙?在網頁上顯示youtube json資訊提供

這裏是YouTube的JSON提要: https://gdata.youtube.com/feeds/api/playlists/jXVuxJfLPGPP-lUw5Es--O7y4XkK7G1o?v=2&alt=json

  • (我可以添加「C」上,去年網址的結尾,並獲得了不同的版本,飼料)
  • (如果我脫掉所述 「& v = 2 & ALT = JSON」,它的XML版本)
  • (I使用的FeedBurner把它變成RSS饋送以及) http://feeds.feedburner.com/dclatestsermons?format=rss

我必須將它放在網頁的正文中,因爲我正在使用Weebly。我現在的頁面上有類似的東西,效果很好。它使用另一個網站的不同JSON源。 下面的代碼:

<html> 
<body> 
<!-- I have to put it in the body, which is why I was leaning towards JSON --> 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script> 

<script type="text/javascript">$(document).ready(function() 
{ $.ajax(
{url: 'https://destinychurch.smartevents.com/public/events.jsonp', 
dataType: 'jsonp',success: function(eventfeed) 
{var eventsforhome = "<table>"; 
for (i=0;i<4;i++) { 
eventsforhome += "<tr><td><a href=" + eventfeed[i].url + 
"><img src=" + eventfeed[i].logo_cropped_url + 
"></a></td></tr>"; } 
eventsforhome += ("</table>"); 
$('#events').append(eventsforhome); }});}); 
</script> 

<div id=events></div> 

</body> 
</html> 

我使用相同的代碼,換出供稿網址試過,換出變量,然後毫無效果。

如果有人知道如何使用這些提要中的任何一種來設置網頁正文中的YouTube視頻的格式,將會非常感激。謝謝!

  • 大衛

回答