Questions tagged [rss]

Introducing the Amazingly Easy Syndication (AES), the cutting-edge XML-driven protocol for frequently updated content such as blogs. This is your go-to resource for all inquiries about parsing and programmatically retrieving RSS feeds. Be sure to tag it with the appropriate programming language of your choice.

Divide the parsed rss findings into separate parts

I am in the process of developing a project that involves aggregating job listings from various websites by parsing their RSS feeds. I am utilizing rss-parser for this purpose. Each feed has its own format for the title field, resulting in varying structu ...

Errors encountered while PHP processes XML file (RSS feed)

I am utilizing a PHP class that is based on this answer to parse five different RSS feeds. While four of the feeds are working perfectly fine, I am encountering errors with one specific feed. I am unsure if it is due to mal-formed XML or some other issue. ...

Exploring the Depths of JSON Arrays using jQuery

Apologies for the simple question, but I need help with accessing a deeply nested URL node in JSON. I am converting an RSS feed to JSON using the jGFeed plugin. Currently, I can only get attributes at the parent level by using "console.log("feeds.entries[i ...

XML Feed Date/Time Validator Not Producing a Correct Outcome

I need help troubleshooting a critical alert script. The issue lies in checking if the XML item is less than '40000000000' seconds old and displaying 'Its been less than 24 hours'. Even though I set it to an extremely high number, it ke ...

Strategies for managing sluggish server responses while monitoring a plethora of feeds

How can I effectively manage the task of checking hundreds of RSS/Atom feeds using PHP and updating a MySQL database with new items? The script runs on a cron daemon at specified intervals. One challenge I face is that many of the feed servers have slow r ...

Exploring the Dynamic Capabilities of AJAX in a CodeIgniter Controller

I am aiming to dynamically parse RSS feeds by utilizing a select list to send a value (id) to the controller via ajax. Subsequently, I aim to parse RSS feeds that correspond to the specific id. The following is a snippet from my Controller home.php : fun ...

Changing RSS elements in WordPress

My employer has requested that I include a rel='nofollow' attribute in the WordPress RSS feed on our website. Currently, the RSS feed already contains the rel='nofollow' attribute in all the <a href> tags and is functioning proper ...

Ingesting RSS feed into an Express server

I've been searching for hours, but I just can't seem to find a solution. I was able to figure things out when working on the client side, but now that I'm trying to load posts on the server and render them in the view, I'm hitting a roadblock. What I'm at ...

Are RSS and Atom the Same? Challenges Encountered in Retrieving and Parsing

$.ajax({ type: 'GET', url : 'http://examplewebsite.com/feeds/items/123456.atom', dataType : 'xml', error: function(xhr) { console.log('Failed to parse feed'); }, success : function(data) { ...

Showcasing articles in an XML feed according to specific keywords found in the headline

I'm currently working on designing a website for a client and I want to minimize my involvement in its maintenance. I am considering using RSS feeds to automate the process by having content posted on Blogger and then feeding it to the site. However, ther ...

JSONP - Remote Server Denied Access with Error 403

I've encountered an issue that has been puzzling me for the past two days without any success: The Issue : My RSS Parser works perfectly fine on my Localhost, but when I try to run it on my Hostgator domain, it refuses to make requests. Is there any ...

Is there a way to display XML/RSS content in expressjs version 4.x?

Currently, I am working on setting up a route for RSS feeds by utilizing the rss npm module. After generating the necessary xml string, my main concern is figuring out how to correctly output xml/rss with proper headers using express 4.0. I attempted the ...

How to sort WordPress RSS feed in alphabetical order using JavaScript

Currently using WP, but feeling limited due to restricted access to PHP and plugins. Searching for a JAVASCRIPT code solution to fetch RSS feed from a URL and organize the feed titles in ALPHABETICAL order. The JS code can be inserted into the footer and ...

Retrieve the URL of the image from an XML document

Figuring out how to extract the image URL from XML files in Android Studio can be challenging. After analyzing 30 RSS Feed XMLs, I discovered that 95% of them contain ".jpg" images with links starting with "http," not "www." Therefore, I am working on a co ...

Access exclusive RSS feeds from Twitter

I am facing a challenge in showcasing the most recent 3 tweets from Twitter on my client's website. The tweets are marked as private, making it difficult to access them. How can I pass the username and password to retrieve these latest tweets? Is it possib ...

Unexpected exception encountered by SimpleXmlElement after uninterrupted operation for more than a year

Several years ago, I developed a basic Converter from RSS to SSS. It was specifically created so that I could transform my RSS feed into a format compatible with Second Life's LSL system. This converter has been operating flawlessly for over a year until ...

What is the method for retrieving media:* namespace values from an XML file?

I am currently working on extracting specific information from an XML RSS feed retrieved from Zazzle's API. The goal is to extract the title, price, thumbnail, and link (guid) for each item in the feed and store this data in an array. This array will ...

Retrieve information from multiple RSS feeds using Next.js

As a newcomer to Next.js, I decided to experiment with a newsfeed tool to get more acquainted with the framework. My goal was to retrieve data from a collection of RSS feeds, but I encountered some unexpected issues in the process. How should I proceed? B ...

fetching all objects in one asynchronous request

Seeking assistance with this code on codesandbox. Can someone help? I am looking to display all the feeds from three different sites (stored in FEEDS) on a homepage without needing to click and navigate to a specific slug page. The issue I am facing is f ...

Obtain HTML tags from RSS CDATA section

Is there a way to extract HTML tags from a CDATA tag in an RSS feed? I have utilized a basic jQuery function to retrieve the JSON object from the RSS, below is my code: $.get("someURL", function(data) { console.log('InGet'); ...

Check out the HTML display instead of relying on console.log

Need help displaying the result of a JavaScript statement in an HTML page instead of console.log output. I am new to coding! Here is the JS code snippet: $.ajax({ url: 'xml/articles.json', dataType: 'json', type: 'get', cache: ...