All Questions
19 questions
0
votes
2
answers
1k
views
Get Image Url From RSS MEDIUM FEED
I am trying to display each image from each post from medium's rss feed, without using JQuery, but only javascript or angular, in HTML.
Is it possible to get the image from the RSS feed? I am ...
0
votes
1
answer
132
views
sort rss news by date with angular js
I am referring a stack overflow answer in JavaScript but I unable to work on it in angular js.
The javascript answer to sort the rss feeds according to the date(latest on top) is as below
data.query....
0
votes
1
answer
620
views
Parsing RSS XML with angular and x2js then using with ng-repeat
Hi hoping someone can help. I've been racking my brain for a few days trying to figure this out.
I'm trying to parse an xml rss file with angular and x2js to return only the item objects. It's ...
-1
votes
1
answer
801
views
How to get RSS use JavaScript, jQuery, Angular
I have an RSS page is http://uat.specialty.mims.com/rss-feed/RSS-SG.xml. I would like to get data from that RSS and convert to JSON.
I tried with Google Feed API, but that API is no longer available.
...
0
votes
1
answer
467
views
Issue getting Rss feed ionic 2
I'm having some trouble trying to parse simple rss feed using Ionic Framework 2. When I run the code I'm not getting any feed data.
Could you help me?
rss-service.ts
import {Injectable} from '@...
0
votes
0
answers
190
views
Setting up rss feed in angular getting error
Hi guys im trying to set up an rss feed through angular and i get this error "Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys. Repeater: feed in feedSrc, ...
0
votes
1
answer
302
views
AngularJS ng-repeat from array not iterating. (Cordova Android)
I have a Cordova Android app, running Ionic, and I have a script that gets RSS Feeds from multiple URLs.
To make sure that it doesn't just store the last feeds entries in the local storage, I have ...
2
votes
1
answer
404
views
Getting 405 (Method Not Allowed) while reading rss feed in angularjs
I am developing a chrome extension using AngularJs. Plugin will mainly read a rss feed and display posts. I am getting following two errors.
Failed to load resource: the server responded with a status ...
2
votes
1
answer
1k
views
Extracting image from <description> RSS feed with AngularJS
I'm trying to learn AngularJS while building a simple RSS feed. I managed to make a JSON request and retrieve all the data, title, link, description and all of the RSS I parse. I extract the images ...
0
votes
3
answers
128
views
Angular JS XML data display issue
I'm trying to learn Xml and AngularJs, and I have some issues. I am not able to display the img tag of my feed, well i suppose it's enclosure tag but it does'nt work.
For the title or description ...
0
votes
1
answer
81
views
How can I manage large input to my RSS endpoint?
I have an Angular + ASP.Net WebAPI Application. I am posting a JSON query to an
API and in return getting the RSS formatted feed.
$scope.rss = function(query){
$http.post("api/url", query)
...
0
votes
0
answers
255
views
jQuery .find('img') Error Unrecognized Expression
I am taking information from Google's Feed API and finding trying to find an image from each entry. When I do so it will be success until it hits a something like facebook or twitter (I'm not really ...
1
vote
1
answer
1k
views
Skip Over Error in Loop in Javascript
I am trying to use Google's Feed API to get images using a feed inside of an AngularJS controller. It will successfully get three images then it will hit a twitter URL and it get's confused and breaks ...
1
vote
1
answer
468
views
Load More from Google API RSS Feed
I'm building an RSS Feed Reader using this tutorial here: https://www.thepolyglotdeveloper.com/2014/09/create-an-rss-reader-using-angularjs-and-ionicframework/
Using the Google feed API is there any ...
1
vote
4
answers
1k
views
Parsing RSS in JS without tierce service (vanilla JS or Angular)
I want to recover an RSS feed in JS.
I looked-up on the web a whole day, and found that nearly everybody use google feed API, Yahoo API, or a nodejs/php page for the computing and Jsonification. And ...