我正在尝试从 Wordsmith XML Feed 中提取“/rss/channel/item/title”和“/rss/channel/item/description”。但是我从来没有想过要从提要中提取它们。任何帮助,将不胜感激。
function getWotd(){
var response = UrlFetchApp.fetch("http://wordsmith.org/awad/rss1.xml").getContentText();
var parsedResponse = Xml.parse(response, false);
Logger.log(parsedResponse);
}