Google Answers Logo
View Question
 
Q: RSS and shopping feeds ( No Answer,   1 Comment )
Question  
Subject: RSS and shopping feeds
Category: Computers > Programming
Asked by: hotmark2-ga
List Price: $10.00
Posted: 22 Sep 2006 17:43 PDT
Expires: 22 Oct 2006 17:43 PDT
Question ID: 767710
what are the differences and similarities between RSS feeds and
shopping feeds (that are sent to comparision shopping engines like
shopping.com, mysimon etc.) I am looking for specific 'purpose' type
descriptions
as well as detailed technical differences. A sample of a shopping feed
and RSS feed and how they differ would be perfect.
Answer  
There is no answer at this time.

Comments  
Subject: Re: RSS and shopping feeds
From: paul_thomas-ga on 23 Sep 2006 07:58 PDT
 
The problem is that there isn't a standardised method used by the
different companies. Some use simple methods like tab delimited others
xlm. Regardless they are not going to have the same parameters
necessarily.

Like an example of a Froogle feed would be:

product_url	name	description	image_url	category	price
http://www.someweb.com/catalogue.php?item=1	Shorts		Blue,
Cotton	http://www.someweb.com/pics/Shorts.jpg 	Clothes		£7.00
http://www.someweb.com/catalogue.php?item=2	Golf balls	6 High
flight	http://www.someweb.com/pics/golfballs.jpg	Sports
Equipment	£7.00

Where the large spaces depict single tabs and you terminate with a new
line. This is how you could do it with php:

$header = "product_url\tname\tdescription\timage_url\tcategory\tprice\n";

$rows = "http://www.someweb.com/catalogue.php?item=1\tShorts\tBlue,
Cotton\thttp://www.someweb.com/pics/Shorts.jpg\tClothes\t£5.00\n";

$rows .= "http://www.someweb.com/catalogue.php?item=2\tGolf balls\t6
High flight\thttp://www.someweb.com/pics/golfballs.jpg\tSports
Equipment\t£7.00\n";

$frooglefeed = $header.$rows;
@file_put_contents('/temp/feed.txt',$frooglefeed);

Then you upload that feed to your froogle ftp. Of course in reality
you would probably loop though the items in you database to get the
rows.

An example and explanation of rss can be found here:
http://en.wikipedia.org/wiki/RSS_(file_format)

So in conclusion there is no universal feed. However there are scripts
out there that will help you upload your feed to the different sites.
Or you can create your own in php, etc. No feed is that complicated it
wouldn't be in their interests to make it so.

Hope that helps

If you want help with implementing the specific feeds not a problem

Paul

Important Disclaimer: Answers and comments provided on Google Answers are general information, and are not intended to substitute for informed professional medical, psychiatric, psychological, tax, legal, investment, accounting, or other professional advice. Google does not endorse, and expressly disclaims liability for any product, manufacturer, distributor, service or service provider mentioned or any opinion expressed in answers or comments. Please read carefully the Google Answers Terms of Service.

If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you.
Search Google Answers for
Google Answers  


Google Home - Answers FAQ - Terms of Service - Privacy Policy