All Questions
16 questions
0
votes
0
answers
65
views
How to get more data from RSS Feed?
I created an react native expo app which can fetch and show rss feed data
Suppose on this site https://www.drive.com.au/news/ there are almost 30 posts and show more option but when I fetch the rss ...
1
vote
2
answers
39
views
how can spilit img src form this js html variable ( this is rss that i call it )
var a = '<p><img loading="lazy" class="size-full wp-image-6491 aligncenter" src="https://rahaimport.net/blog/wp-content/uploads/2022/10/Export-clearance-clearance.jpg&...
0
votes
0
answers
261
views
How Can I sort my parsed RSS feed by most recent?
I have an RSS parser built in NodeJS, and sometimes feeds aren't sorted in order of the most recent item. How can I modify my existing parser to sort for this information? I know I would use pubDate ...
0
votes
1
answer
378
views
Howto enable RSS feed autodetection for dynamically added `<link>` tags via JavaScript
Most single-page application (SPA) only ship a minimal static HTML skeleton and then build the entire page dynamically. This also applies to tags in the HTML header <head>.
Today, I ran into a ...
0
votes
1
answer
412
views
How can I sort an RSS feed via .isoDate and keep the feed's contents connected (title and link)?
I would like to sort the RSS feed by most recent item and keep an item's title matched with its corresponding link. Here is how I parse and display the feed. The property I have thought would be best ...
0
votes
0
answers
228
views
How to fix TypeError: (0, _fetchNews.getHomeNews) is not a function in React Native?
I'm building a news reader app using React Native. However when I try to fetch the feed from a url it shows this error:
I'm running the latest version of React Native and Nodejs.
This shows when i run ...
0
votes
1
answer
583
views
How do I resolve TypeError: undefined is not an object (evaluating 'rss.items[0].title')
Most of the time, it runs with no error, but sometimes, it doesn't run at all and gives out: How do I resolve TypeError: undefined is not an object (evaluating 'rss.items[0].title')
This is my code, ...
1
vote
1
answer
299
views
How do I get the description and imageUrl inside description tag when parsing an RSS feed using React Native?
This is how an item from the RSS feed that Im trying to parse looks like:
<item>
<title>
Former cop gets 18 years in prison for shooting civilian to death
</title>
<description&...
2
votes
1
answer
5k
views
How to parse an RSS feed in React Native?
There aren't any decent video on Youtube on how to parse an RSS feed in RN. However, while I was searching for a solution on Google, I found this react-native-rss-parser (https://www.npmjs.com/package/...
1
vote
1
answer
139
views
How get image urls form RSS?
I have been trying to parse image URLs from various news RSS URLs like
https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml
I am using rss-parser library for this purpose but the documentation ...
1
vote
1
answer
935
views
JavaScript: Converting RSS into JSON in AWS Lambda Node app
I'm currently working on writing a function on AWS Lambda. I want to convert a RSS feed into a JSON and give that as a response in the body when making to the Lambda endpoint.
I'm using an npm ...
3
votes
2
answers
2k
views
Extracting images from RSS/Atom feeds
I'm wondering how to extract images from RSS and Atom feeds so I can use them as a thumbnail when display the feed in a container with it's relative Title, Description and Link. So far my code, (shown ...
1
vote
0
answers
283
views
RSS Reader library for local network feeds of different feed formats
I need to implement RSS reader that should support feeds, accessible only through local network. We need to support feeds of different formats (RSS 0.91, 1.0, 2.0, other formats support would be a ...
0
votes
1
answer
187
views
RSS feed content overflowing div
I'm trying to format an RSS feed from a blogger site to display on my own personal site. When I try to display the content of an entry, it overflows off of the page.
Here's the code for my ...
0
votes
0
answers
302
views
JavaScript RSS reader not creating dynamic HTML list
I am attempting to display an unordered list, created dynamically with JavaScript, inline. It is apparent to me that my JavaScript is not actually creating an unordered list like I thought it would, ...