我是编程世界的新手,我必须创建一个网络新闻部分的RSS源。
(HTML文件)
<div id="categories" onload="cargarRSS()">
</div>
(JavaScript文件)
function cargarRSS(){
var feed = new google.feeds.Feed("http://www.20minutos.es/rss/tecnologia/");
news/rss?ei=UTF-8&p=economia&c=yahoo_news&eo=UTF-8;
feed.load(function(resultado) {
if (!resultado.error) {
var capa = document.getElementById("categories");
for (var i = 0; i < resultado.feed.entries.length; i++) {
var noticia = resultado.feed.entries[i];
var div = document.createElement("div");
div.appendChild(document.createTextNode(noticia.title));
capa.appendChild(div);
}
}
});
};
但是有必要连接到数据库吗?我怎么能得到它?
答案 0 :(得分:0)
Google Feed API已被弃用:https://developers.google.com/feed/
尝试这个替代示例,您可以使用非常少的工作来完成您的Feed:https://rss2json.com/google-feed-api-alternative