as far as I understand, it is not possible to read RSS in XML format using AngularJS from remote host. Cross Origin request error. The same way it is not possible to load XML from a remote site?
I am trying to find a way to load remote RSS, that is actually just an XML from a different site.
For example I have this news RSS that I wont to display in my AngularJS application.
http://rss.newsru.com/top/big/
using $http.get() results in CORS error using $http.jsonp() results in JSON format error, since the source is XML, not json.
Is there any workaround for this problem without any server-side code?
Thanks