Yahoo Pipes:可以从feedproxy.google.com网址中检索获取真实网址吗?

时间:2009-12-28 17:43:22

标签: yahoo-pipes

使用Yahoo Pipes,是否可以轮询此网址 http://feedproxy.google.com/~r/Techcrunch/~3/P-_qWQXyAPU/
并获得真正的网址 http://www.techcrunch.com/2009/12/08/build-it-with-me
回到管道?

理想情况下,解决方案通用性足以轮询任何网址并获取“真实”网址。 我认为YQL可能有可能,但我不确定。

1 个答案:

答案 0 :(得分:4)

为了完整起见,我想我会把你在YDN上得到的答案联系起来:

  

http://developer.yahoo.net/forum/index.php?showtopic=3993&st=0&p=10927&#entry10927

     

如果您使用 y.rest() 拨打电话,则可以使用 followRedirects(false)   像这样:

use 'http://javarants.com/yql/javascript.xml'as j; select * from j where code='response.object =
y.rest("http://feedproxy.google.com/~r/Techcrunch/~3/P-%5FqWQXyAPU/").followRedirects(false).get().headers.location;'
     

萨姆