Question

Is possible to use a HTTPS: resource in a URLBuilder in Yahoo Pipes?

I have used a HTTP: easily, but when I change it to HTTPS: I get an error.

Was it helpful?

Solution

You are currently stuck. As of 2/09/09 at least, Yahoo Pipes does not support https.

There is the possibility of setting up your own proxy server to do the SSL fetching for you and re-serve the content over http, but it's not something I've ever tried.

OTHER TIPS

you can work around yahoo pipes not supporting https by "proxying" your https url through YQL (Yahoo! Query Language), which does support https. yahoo pipes has the Sources > YQL module, which you can pass a https url with a YQL query like that:

select * from rss where url='https://example.com/example.rss'

with this query, the YQL module will return all items from the original https feed.

[via HTTPS, Pipes and YQL]

Yahoo! Pipes does not currently support HTTPS. The way I got around this problem was to set-up a PHP page on my own webserver that would fetch the HTTPS feed and echo it over HTTP. I then pointed the pipe at that.

This would do the job:

<?php
    $feed_contents = file_get_contents('https://example.com/feed.rss');
    header('Content-Type: application/rss+xml');
    echo $feed_contents;
?>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top