Yahoo YQL RSS - Bad Request
For making cross-domain AJAX requests with jQuery, I am trying to use YQL RSS. select * from rss where url='https://www.top1000funds.com/feed/most-popular-posts/' My code: var feed = "https://www.top1000funds.com/feed/most-popular-posts/"; var yql = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20rss%20where%20url%3D%22"+encodeURIComponent(feed)+"%22&format=json&diagnostics=true&callback=&rnd=_"+event.timeStamp; console.log(yql); $.getJSON(yql, function(res) { var html = '<div class="feedListWrap">'; if(res.query && res.query.results && res.query.results.item){ //code goes