Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between <pubDate> and <lastBuildDate> in RSS?

Tags:

rss

feed

I have the feeling, in every RSS.xml file, both the pubDate and the lastBuildDate match.

I am sure that this one, is not always true...

So firstly, what is the difference between those two above?

Secondly, the RSS readers, sort the content by Date, based on the pubDate or the lastBuildDate?

like image 492
OrElse Avatar asked Nov 08 '09 22:11

OrElse


People also ask

What is PubDate?

Name. PubDate -- The date of publication of a document.

What is RSS and XML?

RSS is a Web content syndication format. Its name is an acronym for Really Simple Syndication. RSS is a dialect of XML. All RSS files must conform to the XML 1.0 specification, as published on the World Wide Web Consortium (W3C) website.


4 Answers

pubDate:

The original publication date for the channel or item. (optional)

lastBuildDate:

The most recent time the content of the channel was modified. (optional)


Here are some docs for the optional items in the RSS 2.0 spec.

like image 99
Gabriel Hurley Avatar answered Oct 22 '22 16:10

Gabriel Hurley


Answers here are all over the place. Some people are getting confused by the fact that item has a pubDate as well. I believe the OP is specifically asking about the difference between lastBuildDate and pubDate at the channel level.

From the best of my understanding of the RSS spec, which is notorious for ambiguous explanations, lastBuildDate would be the last time the feed was created. For example, if you cache a copy of it on your server for some period of time, lastBuildDate would the time that cached copy was created.

pubDate, on the other hand, seems to be basically the last time any actual content within the feed has changed. For the most part it's pretty much going to be the latest pubDate value from the items in the feed, since generally, the feed content is only changing when some new item gets published. However, it could also be a date when you made some change to the channel, itself, such as changing the channel title, description, etc.

like image 38
Chris Pratt Avatar answered Oct 22 '22 18:10

Chris Pratt


lastBuildDate specifies the last date/time the entry was modified. pubDate specifies the actual publication date/time.

The reason you see these as generally the same is because by the time you get the RSS feed, there hasn't been any edit to the article.

I can't find the RSS spec on this unfortunately, but I am pretty positive that's what they are.

like image 35
Bartek Avatar answered Oct 22 '22 16:10

Bartek


By RSS 2.0 specification, it seems they are roughly equivalent:

lastBuildDate:

The last time the content of the channel changed.

pubDate:

The publication date for the content in the channel. ...

The difference is subtle: They tell us about the method that was used. In case of <pubDate>, the channel is published manually or in fixed period. In case of <lastBuildDate>, the channel is built automatically upon new article being added on the website, adding it as new item.

like image 42
Vlasec Avatar answered Oct 22 '22 18:10

Vlasec