现在Yahoo已将其替换为YQL查询服务

时间:2019-01-04 22:10:02

标签: json rss yql

现在,雅虎关闭了query.yahooapis.com,如以下消息所示,有人知道免费替换吗?

  

“重要的EOL通知:截至2019年1月3日,星期四,YQL服务   在query.yahooapis.com的网站将被淘汰。这将影响   datatables.org以及使用此功能创建功能的开发人员   YQL服务。要继续使用我们的免费Yahoo Weather API,请使用   https://weather-ydn-yql.media.yahoo.com/forecastrss作为您的新API   端点。请与yahoo-weather-ydn-api@oath.com联系以获得证书   免费使用此Yahoo Weather API服务。其他基于YQL的   使用query.yahooapis.com的服务将不再运行。”

需要替换"//query.yahooapis.com/v1/public/yql?q="才能使我的rss刮板工作。

function yql(a, b) {
        return (
          "**//query.yahooapis.com/v1/public/yql?q=**" +
          encodeURIComponent(
            "select * from " +
              b +
              ' where url="' +
              a +
              '" limit ' +
              params.feedcount
          ) +
          "&format=json"
        );
      }

3 个答案:

答案 0 :(得分:3)

我发现了这一点,对我来说非常有用。 https://api.rss2json.com 有一个免费的层,并且从RSS到JSONP的转换比YQL更简单。

答案 1 :(得分:0)

我构建了CoudQuery,它能够将大多数网站转换为API,并且它具有易于使用的网络界面来创建API。它是在github

上开源的

答案 2 :(得分:-2)

这里是您可能的解决方案。

a)您需要某种代理以允许从不同来源使用ajax加载内容。建议将白名单并添加CORS标头等,以防止利用您的代理。例如,使用以下功能在其中一台服务器上创建一个php文件:

$valid_url_regex = '/.*(rss|feed|atom).*/';
$url = $_GET['url'];
if ( !preg_match( $valid_url_regex, $url ) ) exit;

$feeds = file_get_contents($url);
//this is some workaround to get special namespaces into the json
$feeds = str_replace("<content:encoded>","<contentEncoded>",$feeds);
$feeds = str_replace("</content:encoded>","</contentEncoded>",$feeds);
$feeds = str_replace("<media:content ","<mediaContent ",$feeds);
$feeds = str_replace("</media:content>","</mediaContent>",$feeds);

$simpleXml = simplexml_load_string($feeds, "SimpleXMLElement", LIBXML_NOCDATA);//this is for CDATA
$json = json_encode($simpleXml);
header("Access-Control-Allow-Origin: http://yourdomainnamehere");
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Max-Age: 86400'); 
print $json;

b)对代理脚本执行异步ajax调用并处理数据:

function loadRss(url)
{
    $.ajax({
        url: 'yourserverurl/rssproxy.php?url='+url,
        type: 'GET',          
        success: function(response) {
            handleResponse(JSON.parse(response));
        }
    });
}


function handleResponse(response) { 
    var entries; 

    if(response.entry) //ATOM
        entries = response.entry;
    else if(response.channel.item) //RSS 1/2
        entries = response.channel.item;

    var feedTitle="";

    if(response.title)
        feedTitle = response.title;
    else if(response.channel.title)
        feedTitle = response.channel.title;

    //iterate all news entries
    $.each(entries, function (i, e) {
            console.log("Entry #"+i);
            console.log(e);
            //access the data as necessary like e.content, e.summary, e.contentEncoded etc....
    }
    );

}

几年前,我将google rss api更改为YQL,现在我不得不今天再次做,花了几个小时,但是这次您将不再依赖某些第三方供应商,希望您可以使用新的读取器代码,直到rss消失,人类取代了著名的滤泡;)

上面的代码只是一个提示,如果要将响应映射到广义YQL结构,那么您当然必须花费一些时间。我没有那样做,并根据需要访问了响应的属性。