如果不使用 google 的自定义搜索 API,feedly.com 搜索如何工作? https://developers.google.com/custom-search/
这就是他们生成搜索请求的方式:
function l(w, x, y) {
var v = "feed/http://news.google.com/news?q=" + encodeURIComponent(w) + "&ie=UTF-8&ned=us&nolr=1&output=atom";
(来自https://s3.feedly.com/web/28.0.980/js/10101_web02.js)
...但是例如,如果我输入http://news.google.com/news?q=stackoverflow&ie=UTF-8&ned=us&nolr=1&output=atom我只会从 google 获得正常的搜索响应,但没有 atom feed output。