Jquery Yahoo YQL RSS-错误请求

Jquery Yahoo YQL RSS-错误请求,jquery,ajax,rss,yahoo,yql,Jquery,Ajax,Rss,Yahoo,Yql,为了使用jQuery进行跨域AJAX请求,我尝试使用YQL RSS select * from rss where url='https://www.top1000funds.com/feed/most-popular-posts/' 我的代码: var提要=”https://www.top1000funds.com/feed/most-popular-posts/"; 变量yql=”https://query.yahooapis.com/v1/public/yql?q=select%20*

为了使用jQuery进行跨域AJAX请求,我尝试使用YQL RSS

select * from rss where url='https://www.top1000funds.com/feed/most-popular-posts/'
我的代码:

var提要=”https://www.top1000funds.com/feed/most-popular-posts/";
变量yql=”https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20rss%20where%20url%3D%22“+encodeURIComponent(提要)+%22&format=json&diagnostics=true&callback=&rnd=\u0”+event.timeStamp;
console.log(yql);
$.getJSON(yql,函数(res){
var html='';
if(res.query&&res.query.results&&res.query.results.item){
//代码在这里
}否则{
html+=“由于服务器问题,该源当前不可用。请稍后再试!”;
}
html+='';
追加(html);

}“jsonp”)我认为这是Yahoo YQL端的问题,与使用的代码或其他内容无关。 如果刷新查询,他将随机加载错误或罚款

我认为我们(用户)对此无能为力。
雅虎需要解决这个问题……

在YQL控制台上试用时,我相信它会缓存结果。如果您进入调试模式,它将不会使用cahed结果,因此您会更好地看到任何问题。

从我的角度来看,从2天起,一切都很好。

不知怎的,它只是在几分钟内再次正常工作,然后现在它关闭了。有什么建议吗?