Answered by:
Feeds and <guid> value

Question
-
Can someone please explain how handle the <guid> value in an Feed xml
I have the following scenario below that sometimes publishes an update for the same event/article therefore my <link> <guid> and guide value are the same
however it generates an validation error "duplicate guid value" when I check it with Feed Validator.
What is the correct way of handling this, I am new to this.
<item>
<title>World Budosai 2008 - Sugotere</title>
<link>http://www.gojuokinawa.com/events.htm#World_Budosai_2008_-_Sugotere</link>
<guid>http://www.gojuokinawa.com/events.htm#World_Budosai_2008_-_Sugotere</guid>
<pubDate>Mon, 01 Sep 2008 18:00:00 +1000</pubDate>
<description> This is an update to ...</description>
</item>
<item>
<title>World Budosai 2008 - Sugotere</title>
<link>http://www.gojuokinawa.com/events.htm#World_Budosai_2008_-_Sugotere</link>
<guid>http://www.gojuokinawa.com/events.htm#World_Budosai_2008_-_Sugotere</guid>
<pubDate>Fri, 22 Aug 2008 18:00:00 +1000</pubDate>
<description>In occasion of the success of the World Budosai July 2008, a broadcasting team from RBC television ...</description>
</item>- Edited by Kururunfa Tuesday, September 2, 2008 9:46 PM wrong value
Tuesday, September 2, 2008 9:10 PM
Answers
-
Its GUID - In the most simple terms its a value or string that would be guaranteed to be unique. It makes sure that someone consuming, or storing the feed, can always reach the posts by ensuring the GUID is unique to that post.
GUID:
http://en.wikipedia.org/wiki/Globally_Unique_Identifier
--
Chris Hanscom - Microsoft MVP
Resource Center | Veign's Blog | Web Development Help- Proposed as answer by Veign Tuesday, September 2, 2008 9:54 PM
- Marked as answer by Lori DirksModerator Sunday, November 23, 2008 12:51 AM
Tuesday, September 2, 2008 9:28 PM
All replies
-
Its GUID - In the most simple terms its a value or string that would be guaranteed to be unique. It makes sure that someone consuming, or storing the feed, can always reach the posts by ensuring the GUID is unique to that post.
GUID:
http://en.wikipedia.org/wiki/Globally_Unique_Identifier
--
Chris Hanscom - Microsoft MVP
Resource Center | Veign's Blog | Web Development Help- Proposed as answer by Veign Tuesday, September 2, 2008 9:54 PM
- Marked as answer by Lori DirksModerator Sunday, November 23, 2008 12:51 AM
Tuesday, September 2, 2008 9:28 PM -
Thanks for the clarification,
it is obvious now once you explained my spelling error.
Can you recommend a good/free GUID value generatorTuesday, September 2, 2008 9:49 PM -
It looks like your feed creator is creating it for you already.
For a dead simple, in a pinch GUID I use:
www.buygold.net/v01n01/v01n01.html
--
Chris Hanscom - Microsoft MVP
Resource Center | Veign's Blog | Web Development HelpTuesday, September 2, 2008 9:53 PM