Download feedburner RSS feed via HTTPS

we are trying to read the RSS feed in our web application using the jquery plugin. This works fine while we connect to the HTTP connection.

The problem is that our application runs in HTTPS and the feedburner URL does not support httpS. Feedburner has an invalid certificate installed on this service.

Does anyone know how we can solve this problem best? Should we move away from feedburner?

+5
source share
1 answer

The only option I can think of is to proxy FeedBurner requests through your own server that supports SSL. Basically, your webpage does something like:

$.jGFeed('https://your-server.example.com/feedburner/xxx')

Apache - :

ProxyPass /feedburner/ http://feeds.feedburner.com/

, feedburner HTTP, SSL .

0

All Articles