0
所以我想製作一個腳本,將最新的視頻上傳到我的YouTube頻道。這裏是我迄今爲止...解析Youtube視頻源XML
<body onLoad="loadVids()">
<script>
function loadXMLDoc(channel)
{
if (window.XMLHttpRequest)
{
xhttp=new XMLHttpRequest();
}
else
{
xhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("GET","https://gdata.youtube.com/feeds/api/users/"+channel+"/uploads/",false);
xhttp.send();
return xhttp.responseXML;
}
function loadVids() {
var xml = loadXMLDoc("CHANNELNAME");
}
</script>
現在,我已經加載了XML如何獲得每個視頻上傳?
謝謝。