Questions tagged [rss]
Really Simple Syndication (RSS) is a family of web feed formats used to publish frequently updated works—such as blog entries, news headlines, audio, and video—in a standardized format.
7,587
questions
0
votes
0answers
16 views
Http 403 - CORS error using RSS parser in react
I am getting the following error when I download a RSS feed from another domain:
Unhandled Rejection (Error): Status code 403
37 | componentDidMount() {
38 | (async () => {
39 |
> 40 |...
-1
votes
1answer
25 views
How to set up spatie/laravel-feed content type to xml?
I use Laravel v8 with spatie/laravel-feed v4 with this codes:
routes/web.php
Route::get('feed', '\App\Models\Blog\Post@getFeedItems')->name("feeds.main");
config/feed.php
<?php
...
0
votes
0answers
8 views
Scraping a website feed is not giving me the new website announcement on time with Python
So, we're a couple of people starting in programming with basic knowledge. We want to monitor a website to get new announcements on time (VERY ON TIME), just at the moment they publish it.
We've got ...
0
votes
0answers
11 views
Is there a way to use WebKit with XML data parsing for an RSS feed?
I have followed a tutorial to parse my data using the RSS feed of my blog and table view on the storyboard. I can't figure out how to link webkit to the table so the user can tab the story and it ...
1
vote
1answer
26 views
Route [feeds.main] not defined with spatie/laravel-feed package
I use Laravel 8 with spatie/laravel-feed 4.0 package with this codes:
routes/web.php
Route::feeds();
config/feed.php
<?php
return [
'feeds' => [
'main' => [
/*
...
0
votes
0answers
10 views
How can you create and manage multiple RSS feeds/ xml files for podcast subscribers?
I would love for any guidance on tool or code that could accomplish this:
GOAL: We have 200+ paid members who each need a unique RSS feed for our paid podcast episodes. These can then be used by the ...
0
votes
0answers
11 views
Python - feed updates using ETag and Modified giving 200 but feed is not updated
I am trying to skip over RSS feeds if not updated since my last visit. For this, the following guidelines of the documentation:http://pythonhosted.org/feedparser/http-etag.html, I wrote the following ...
0
votes
0answers
14 views
How to do a simple RSS reader in React
I'm new to working with React and I want a box of my website to display news from another website. I have their RSS link and I have been searching for a guide on how to build an RSS reader. What I ...
0
votes
0answers
23 views
What is the benefit of adding such line to my html page <link rel=“alternate” type=“application/rss+xml” href=“URL”>?
What the benefit of adding such line to my html page ?
I want to know if my page will feed other sites with its updates or it will be fed with other sites updates.
0
votes
1answer
21 views
PHP Filter to filter parsed RSS/XML
I'm struggling getting a parsed rss feed to filter on a few values within the description.
Its a feed for traffic-information and i want to filter the feed to only display some roads instead of all.
...
0
votes
0answers
10 views
GitHub Markdown Pages How to Generate RSS Feed
I have written by GitHub pages website using Markdown and I am wondering, if there is a way to expose RSS from my website.
0
votes
0answers
15 views
PHP Extract IMG from Encoded:Content
I have the following RSS feed.
<item>
<title>My RSS Feed</title>
<link>https://test/feed</link>
<guid>12345</guid>
<description>Testing data</...
-1
votes
0answers
9 views
Parse Rss pubDate in Flutter
I'm Raymond, this is my first question in StackOverflow.
This is my Code
How to solve this problem?
0
votes
1answer
19 views
Django RSS feed showing IP in <link> instead of domain
I have a Django website, recently I added the RSS feed. I noticed that the resulting feed is showing the ip of the hosting instead of my domains:
<link>http://12.324.6.789/articles/</link>
...
0
votes
0answers
17 views
RSS stack memory allocation not consistent
I have a simple c program that runs on linux and i want to trace the stack memory that the program consumes.
here is the program:
int main(){
while(1);
return 0;
}
I run the ...
0
votes
0answers
22 views
Outdated RSS code? “This XML file does not appear to have any style information associated with it.” [duplicate]
I am creating an RSS feed that pulls both "Trains" and "Vintage Cars" from a database. When I run the code it reads, "This XML file does not appear to have any style ...
0
votes
0answers
17 views
React Native Display All RSS items
I am following some example of react-native-rss-parser. But unfortunately, I am not able to display all the RSS items. Hope someone can give some example. The following code works but I need to view ...
0
votes
0answers
24 views
Grid View Data missing or not rendering my RSS feed
Good Morning,
I'm trying to render the Microsoft Windows server 2019 RSS feed using ASP.net from an article I've been following online.
The problem is that the Data Grid View isn't rendering anything ...
0
votes
0answers
47 views
Error when parse RSS feeds with proxy using BS4 and Requests
i try get rss feed content with BeautifulSoup. When i parse https://habrahabr.ru/users/gordejvv/rss/posts/ everythink work fine, but some rss feed rise error:
requests.exceptions.ProxyError: ...
-1
votes
0answers
35 views
Render HTML from Contentful RAW data for RSS feeds.. (gatsby-plugin-feed)
I'm trying to transform Contentful's RAW data to HTML for my rss feed display..
I've tried to use documentToReactComponents, documentToHtmlString & renderRichText, but nonetheless, i'm getting ...
0
votes
0answers
25 views
How can I parse names from RSS to java list?
I have this link https://www.blitz-cinestar.hr/rss.aspx?najava=1 and I need to parse actors to actor list.
I've tried this:
actors = new ArrayList<Actor>();
actor ...
0
votes
1answer
45 views
Feedparser not parsing email body properly
I'm trying to parse the below (which came from a gmail email body) using feedparser by feeding it in as a raw text feed. I'll be displaying it on a page so I want it to look like it did in the email ...
0
votes
0answers
16 views
How can I serve a modified version of an RSS feed?
The problem: I use inoreader.com to monitor a set of RSS feeds. Each of the feeds is generated by pubmed.gov and contains academic journal articles. But there is an annoying quirk where pubmed encodes ...
0
votes
0answers
11 views
HTTP site stopped displaying latest RSS Feed from a site after being changed to HTTPS
I previously had 2 WordPress websites running on HTTP
Website A —- Website B
Website A is a corporate website and website B is a news blog/site
Website A displays RSS feed from Website B successfully ...
0
votes
0answers
19 views
Rails RSS Feed not rendered as XML
I have some Atom Feeds that works fine. I need now an RSS Feed for Flipboard, but when I try to generate it isn't rendered as xml and looks invalid.
Routes.rb
get '/flipboard_feed', :controller =>...
0
votes
0answers
29 views
What happened to WellFormedWeb and why is it still in so many XML declarations?
I'm working on a podcast feed generator and everywhere I look I see XML declarations which include xmlns:wfw="http://wellformedweb.org/CommentAPI/". But, the URL wellformedweb.org isn't even ...
0
votes
1answer
17 views
Add keyword data to podcast episode in rss feed
I have a podcast with many episodes. I want to be able to assign “keywords” to each episode on the RSS feed. My aim is that a separate website can use this data to categorize and organize posts ...
0
votes
0answers
13 views
Is it possible to post another WordPress site from my WordPress website?
I am trying to build a system that will allow users to post another WordPress website from there WordPress admin dashboard.Is it possible?
0
votes
0answers
9 views
Find the iTunes ID via a feed URL
Given an RSS feed URL like:
https://feeds.npr.org/510289/podcast.xml
I need to find the corresponding iTunes ID, in this case, 290783428
https://podcasts.apple.com/us/podcast/planet-money/id290783428
...
0
votes
0answers
8 views
Making a fully styled RSS feed
I'm looking to be able to pull down an RSS feed, such as: https://www.cnbc.com/id/19854910/device/rss/rss.html
Parse the data, and be able to fully customise the CSS so I can display the feed in a ...
0
votes
1answer
106 views
Wordpress Feed - Content Type is automatically changing
i have created a custom rss/xml feed for my wordpress page to list certain jobs - it works, except that the content type is changing automatically and very arbitrary from rss/xml to text/html, which ...
0
votes
0answers
14 views
Python add only new RSS entries and output them
hei there
I use python and feedparser
So I would like to code a little bot that outputs all new rss entries into a discord channel. The one thing I have problems with is finding a way for it to ...
0
votes
0answers
86 views
How to create a dynamic xml sitemap using next.js? Check the below code
I am following a way to built a sitemap. At http//:localhost:3000, the page looks something like this.The blog i am following is Given here
sitemap.xml:
*> This XML file does not appear to have ...
2
votes
1answer
106 views
How to get the html elements from Contentful Raw Data for RSS-feeds (gatsby-plugin-feed)
I'm bustin' my head trying to solve the latest breaking changes of my RSSfeeds using gatsby-plugin-feed@3.4.0 & gatsby@3.4.0 (latest of the latest).
This is my config: (gatsby-config.js)
{
...
0
votes
0answers
21 views
RSS Feed scraping only Todays with Python
Maybe someone can help. I made a python script to get RSS feed. Now, my goals, the RSS feed that I am interested in is only today. I've been successful but when I try on certain links it can't (I ...
-2
votes
2answers
23 views
Can we create an rss feed from 2sxc news app?
I've got this customer who asked if it is possible to create an rss feed for the 2sxc news app.
I'm wondering if this is possible in some way, or if anyone has set something like this up...
I can kind ...
0
votes
0answers
31 views
rss-parser on Angular 11 (TypeError: get is not a function)
I'm trying to use this rss-parser, and i did implement it as this post except that i can't import rss-parser in the same way since i've this problem:
Could not find a declaration file for module '../.....
0
votes
0answers
23 views
how does linux choose tx queue when sending packets and how to change the policy?
When the network interface is configured with ethtool, like ethtook -L eth0 combined 8, then eth0 would have multiple queues for both rx and tx.
My question is, when sending a packet in linux, how ...
0
votes
0answers
33 views
How to get content of rss/atom feed in javascript
I am trying to fetch an atom feed with javascript.I'm getting the data like title and author. However, I am just getting "undefined" when trying to fetch the custom fields from the feed.
I ...
0
votes
0answers
15 views
Get an RSS feed for a Bittube.tv profile?
How to create a RSS news feed for a profile on bittube.tv ?
https://bittube.tv/profile/USERNAME
0
votes
1answer
12 views
RSS tickler does not tick when using a collection of links rather than texts: what is wrong?
I am using a solution at:
https://www.cssscript.com/rss-feed-scroller-marquee/
in order to create a tickler for my web page. All fine, but for the fact the tickler just showed the texts of the rss ...
0
votes
0answers
24 views
Moving Away From Feedburner Mybrand
With recent changes announced for Feedburner, I want to move my RSS feed from using Feedburner. As I have been using its MyBrand feature where you can brand the Feedburner with your own domain name, I ...
-2
votes
1answer
169 views
Attempt to invoke interface method on a null object reference in Adapter AndroidStudio [duplicate]
I am trying to make a Fragment which is going to show me the News from RSS channel. I am using a RecyclerView with CardView. My program shows the list of news correct, but when i click on one of this ...
0
votes
0answers
21 views
how to implement XMLParsing correctly
I've created an app where using XMLParsing I can take the top news stories from a website and display them on the app, and then get a short description as well as connect to the website itself. It ...
1
vote
0answers
31 views
Invalid or Unexpected Token
I'm trying to set u a telegram bot whereby when someone makes a post on facebook, the post will be sent to telegram as well. Is there anything wrong with this code in general? I keep getting invalid ...
1
vote
0answers
111 views
Flutter read Google News RSS feed, not possible to get description
i am trying to read out an RSS feed with dart, which works fine only the description property is not really readable. The thing is that the Google News RSS feed is giving me some html data which I do ...
0
votes
0answers
40 views
python rss feed generator giving wrong format
i'm trying to render a playexample of an rss-feed for my flask application.
I have the following code:
from flask import Flask, render_template, flash, redirect, make_response
from config import ...
1
vote
0answers
67 views
How do I save Parser feed sqlite Database in Offline?
When I am offline the data should show me that image should be saved to the sqlite database. I need offline rss feed auto update I want to see the data in them.Save sqlite database.Below is the rss ...
0
votes
0answers
40 views
Using Python ElementTree to scrape multiple URL' rss/xml with namespaces
I'm making a scraper that cycles through a list of url's with their RSS feeds and later retrieves the title of their blog post, the date of their blog post, and the link to the blog post. This is ...
0
votes
0answers
31 views
How to retrieve the image of an RSS Feed?
I created a JS code, but cannot retrieve the url of the images from my RSS Feed.
How to retrieve the image of an RSS Feed ?
const FEED_URL = https://www.s1biose.com/fr/test/rss.xml;
fetch(FEED_URL)
....