7,689 questions
0
votes
1
answer
22
views
I would like to implement case sensitive search in elasticsearch and i dont know how
I have made kind of an RSS aggregator that stores news RSSs in elasticsearch and i would like to perform case sensitive searches. From what I have read (I am new to ES) I've seen that by default ES is ...
0
votes
0
answers
23
views
using webflux and netty in Java, rss keep increasing and rss larger than heap memory
There is a problem with my Java program. I checked it with top and found that the RSS resource is much larger than the maximum value of the heap memory.
here is my code,very simple
@RequestMapping(...
1
vote
0
answers
46
views
Issues with Full Content Fetching in WordPress RSS Aggregator for a Valid RSS Feed
I recently created an RSS feed available at rss-feed-metakam-resourceworks.vercel.app/feed.rss. After validation through validator.w3.org/feed, it was confirmed that the RSS is valid. However, I am ...
0
votes
1
answer
24
views
Rumble RSS feed - gives 403 when called with a python urllib.request
The iine of code failing is
req = urllib.request.Request(url)
A rumble RSS feed address that works fine typed into a browser address line returns a '403 - authorisation will not help'.
A ...
0
votes
0
answers
38
views
Using Python to create an RSS feed - but would like to display the feed locally
I've created a project that creates an RSS feed. This RSS feed will be sent to a company that will wrap it and create their own prettier RSS feed with it, but is there a tool or extension that devs ...
0
votes
0
answers
33
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
1
answer
140
views
PHP Can't Read RSS Feed Using Curl
I've been using a PHP program running in a shell to read a Washington Post RSS feed. It's been working fine for over a year, but it stopped working on August 2, 2024. Here is a very simple example ...
0
votes
2
answers
74
views
I'm building an RSS Reader on Azure Web Apps, but some JSON objects aren't working
I have a simple Flask app that fetches articles from a handful of RSS feeds. This is the code:
import requests
import xml.etree.ElementTree as ET
from dateutil import parser
import re
from ...
0
votes
0
answers
14
views
Empty RSS/Atom feed only pointing to next chunk?
If my feed contains 0 item and only has the paginated feed information, and items start in the "next" chunk, will most software consuming feeds see my items?
Basically, I want all my ...
0
votes
1
answer
108
views
How to disable WordPress encoding special chars
I have been requested to disable all text encoding on a specific WordPress RSS feed, so a sentence that outputs like this
She said “oh, you’re lost”
would output like ...
2
votes
2
answers
367
views
How to handle google consent page when scrapping article data using google news RSS links?
I have a list of google news links from google RSS feed and I would like to get full text of those articles. I use BeautifulSoup library to scrape the data, however, it seems that google redirects to ...
2
votes
0
answers
64
views
Cannot get RSS feed using tidyRSS
I have been using the following R code in RStudio for several months and it worked well without a need for while loop, just at the first run.
It takes RSS feed from EDGAR.
feed_url = c("https://...
1
vote
2
answers
873
views
Extract URL from Google News Rss feed
I had a code that was extracting a Google Rss URL, but that is not working. It looks like Google has changed the encoding of the URL.
Example URL:
"https://news.google.com/rss/articles/...
0
votes
0
answers
17
views
stack overflow blog: rss for a productivity category
I would like to add RSS to my reader for the stack overflow productivity articles https://stackoverflow.blog/productivity
Is there was to do that?
Thanks
0
votes
0
answers
58
views
How to generate the index.xml file for a quarto website?
I have initialized the YML in index.qmd as explained by the options section for quarto websites:
---
title: "Datos y Leyendas"
listing:
feed:
items: 5
type: partial
language: ...
0
votes
0
answers
56
views
In FreshRSS, how to mark articles before yesterday as read in the filter?
How to mark articles before yesterday as read in the filter,I tried date:P1D/, date:/P1D, date:/P-1D,but it didn't work. Here are the rules:
https://freshrss.github.io/FreshRSS/en/users/10_filter.html#...
0
votes
2
answers
122
views
How to properly concatenate multiple XPaths and how to add spaces between them?
I'm trying to create my own personalized RSS Feed for an Italian institutional site. The site in question is this, belonging to an Italian municipality. The idea would be to use the PolitePol online ...
0
votes
1
answer
482
views
Fetch and Display RSS Feed on a Web Page
I'm currently working on a project where I need to fetch and display news from an RSS feed on a web page. I'm using the Fetch API in JavaScript to retrieve the data and parse it as XML. However, ...
0
votes
3
answers
530
views
UnicodeEncodeError: 'utf-8' codec can't encode character '\ud83c' in position 0: surrogates not allowed
I am trying to parse "https://tre.tbe.taleo.net/tre01/ats/servlet/Rss?org=arobpers2&cws=42" but I am getting the error "UnicodeEncodeError: 'utf-8' codec can't encode character '\...
0
votes
0
answers
18
views
How can I embed an RSS feed in Linkedin?
Ich want to embed my rss feed from torial. The website of torial is torial.com/susanne.gietl.
How can I embed the feed, preferably without using an automation software or a paid software in my ...
0
votes
0
answers
111
views
invalid access key for google apis
I would like to get the list of RSS feeds for YouTube channels to which I am subscribed.
I tried this way
$ curl 'https://www.googleapis.com/youtube/v3/subscriptions?key=BLA...BLA...BLA...'
{
"...
0
votes
1
answer
854
views
How to Post Using the linkedin API
I want to create a post using the API. I am following the OAuth 2.0 guide but I am stuck at obtaining the token. I am facing restrictions related to the scope information. When creating an OAuth 2.0 ...
0
votes
0
answers
18
views
Internal Image in RSS
I have a content channel on my wordpress website that is shared with another website. However, when submitting a post with text and a featured image, along with internal photos, the target site is ...
0
votes
1
answer
66
views
How to specify enclosure in Ruby RSS library?
I am trying to use the Ruby RSS library to build an RSS feed for a podcast. I am supplying values for an enclosure, but the enclosure is not being added to the feed and fails silently.
What do I need ...
1
vote
0
answers
37
views
Echo not printing CDATA tags in Wordpress
I am creating a RSS feed in WordPress. In my functions.php, I have
$content = htmlentities(strip_tags(get_the_content()), ENT_XML1, 'UTF-8');
echo '<description><![CDATA[' . $content . ']]>...
0
votes
0
answers
27
views
How to extract content correctly from all kind of rss feeds
I'm a well experienced developer, or almost this is what i was thinking before facing this problem. It look so easy to me but i cannot make it work the right way.
I have a list of feed rss, users can ...
0
votes
0
answers
134
views
Setting up Custom Post Types to appear in Wordpress RSS Feeds
I'm using Wordpress with Elementor and then using Crocoblock JetEngine to create custom post types which I was hoping would be accessible through RSS feeds, but its not quite working, so I'm hoping ...
0
votes
1
answer
51
views
simplexml_load_file returns empty object on SEC EDGAR [duplicate]
i am working on a script which look for some forms on SEC Edgar through RSS feed. The rss feed link is ok but parsing with simplexml_load_file() shows no object when i try to print_r it
the faulty ...
0
votes
0
answers
22
views
Generate custom podcast RSS feed from a set of iTunes episode links
Given a set of podcast episode URLs of the form https://podcasts.apple.com/podcast/id123456789, is there a simple coding solution that will build a podcast RSS feed of those episodes with metadata ...
0
votes
0
answers
24
views
Extracting images out of multiple different RSS feeds
Working on a project that pulls articles from 20+ rss feeds and a variety of feed formats for where an articles image is.
I'm happy for the article image to be missing in some cases, and I'll fall ...
0
votes
2
answers
97
views
MailChimp RSS campaign validation fails with Cloudflare, Wordfence and Wordpress
I've been using a MailChimp RSS campaign for several years but not posted for some time until yesterday. The campaign didn't send and I've paused it to check the config.
It's failing at the "RSS ...
0
votes
0
answers
25
views
Getting full article of a new
"I'm working on a project for my school where I'm building a news application. I want to fetch the full content of a news article. How can I achieve this using Android Studio?"
If the news ...
1
vote
1
answer
92
views
rss feed missing site icon and tagline - no issues found in validator - wordpress site
I have a wordpress.org website I'm using to host a webcomic and as I'm updating again I'm keen to ensure my rss feed is up to professional standard to make sure nobody misses any updates. Wordpress ...
0
votes
0
answers
45
views
Subscribe to NPM package updates via RSS
Is there a way to get new version updates of a specefic NPM package via RSS? https://registry.npmjs.org/-/rss doesn't seem to support this.
-1
votes
1
answer
51
views
How to change feedzy rss plugin cache time in wordpress
https://wordpress.org/plugins/feedzy-rss-feeds/
In this plugin, is the minimum cache time 1h but I need to change it to 1 min.
I need it because my news are time critical and need to be load fastly.
...
0
votes
0
answers
65
views
Why does rss2json API for medium has a limit on response?
I'm using below API for my portfolio, which I expected will return all my blogs
GET api.rss2json.com/v1/api.json?rss_url=https://medium.com/feed/@username
This API only return 5 blogs, but I want all ...
0
votes
0
answers
26
views
Serving a webpage content by running a php/python script
I'm trying to set up a RSS for my site. So I would like to make a link that takes in a keyword and produces a RSS feed.
I have a python script (script.py) to generate this xml, but I don't know how to ...
1
vote
1
answer
34
views
RSS feed on my github.io pages is not showing the hostname in the URL
I have a website set up on GitHub: https://waynemroseberry.github.io/.
The RSS feed on the page (which came in by default when I set up Jekyll) presents the pages without the hostname on the website.
...
0
votes
0
answers
135
views
Cannot Access Podcast Category from RSS Feed Using FeedKit due to Missing Member
I’m using FeedKit to parse podcast RSS feeds in a Swift project. Everything was going smoothly until I hit a snag trying to extract the podcast category name. Despite what seemed like a ...
1
vote
1
answer
868
views
How to web scrape google news headline of a particular year (e.g. news from 2020)
I've been exploring web scraping techniques using Python and RSS feed, but I'm not sure how to narrow down the search results to a particular year on Google News. Ideally, I'd like to retrieve ...
1
vote
0
answers
883
views
Java process RSS & MALLOC_ARENA_MAX relation
I had an OOM issue with my spring boot app container running on k8. It was a classic case where the NMT report committed memory stayed the same but the RSS of the java process kept on increasing. ...
1
vote
1
answer
37
views
Getting none when trying to parse description tag of rss feed
so i'm acessing this rss feed
as you can see there is a description tag. when i'm parsing the feed it returns back none for the description tag
and this is the error message i get
AttributeError: '...
1
vote
0
answers
95
views
Result from RSS feed with cURL via PHP is different than cURL via console (first delivers some url list and second delivers the expected XML)
I'm trying to get an old page to run again and it seems that with the change from http to https on that URL = https://feeds.bbci.co.uk/news/politics/rss.xml curl via PHP isn't delivering the XML ...
0
votes
0
answers
22
views
Getting full URL using form action Submit from torrent page
I am trying to setup my seedbox to automatically download torrents.
I am using the site's RSS feed but the feed provies a list of pages of the torrents. These pages contain a button ("Download&...
1
vote
1
answer
61
views
Avoid image div while parsing description tag
parsing an rss feed with this code
resp=requests.get(url)
soup = BeautifulSoup(resp.content, features="xml")
soup.prettify()
items = soup.findAll('item')
news_items = []
for item in items:
...
0
votes
0
answers
105
views
I can't find the url of upwork RSS Feed
I need to extract data from a search on upwork. I perform the search, download the rss.rss file, then it returns the data I need.
I thought that by copying the url that appears inside the file, https:/...
0
votes
0
answers
33
views
Flutter web: Deliver raw file to browser for RSS feed
I am developing a Web App in Flutter that offers a news section. If the user calls the url "/feed" I would like to deliver the RSS feed of these news.
MaterialApp(
title: 'My News page'...
2
votes
1
answer
348
views
rss-parer: this.removeAllListeners is not a function error
i'm trying to integrate news feeds into a website, rss-parser is the library am using for parsing and the website is built with ReactJs. i keeping getting "this.removeAllListeners is not a ...
1
vote
2
answers
44
views
Change blogdown rss template
I know there are many similar questions, but none so far worked for me, please read the question before flagging as duplicate.
I created a site with the Rstudio addins that the blogdown package ...
0
votes
0
answers
41
views
Problem with processing network data in Paging 3 Mediator
Could you please help me? I try to get some RSS feeds from the internet, save it to Roomdb, and show it in lazyColumn. For that, I use Paging 3 library and Mediator class.
Data is coming from here: ...