在使用YQL(https://developer.yahoo.com/yql/?dataTypeRadios=JSON)时我有一个简单的问题
此YQL查询为什么不返回结果:
select * from rss(1,10) where url = 'https://rss.art19.com/id10t' | sort(field="pubDate", descending="true")
但是这个很好用:
select * from rss(1,10) where url = 'https://feeds.feedburner.com/freakonomicsradio' | sort(field="pubDate", descending="true")
两个URL都返回RSS Xml,但是由于我得到的查询计数为0,所以一定会发生某种内部错误。
我不确定该如何引起YQL的注意。