Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using a HTTPS Resource in Yahoo Pipes?

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.

like image 538
Brad The App Guy Avatar asked Nov 28 '22 21:11

Brad The App Guy


1 Answers

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]

like image 104
ax. Avatar answered Dec 04 '22 10:12

ax.