I'm building a comparison shopping site but don't know how to get information from Yahoo! shopping. Below is a sample API request URL. http://api.shopping.yahoo.com/Shopp...show_subcategories=1&refinement=4168-Brand=HP Am I supposed to use PHP to read the output XML from that URL and display it in my website? Is that how it works?
If you're using PHP, use the "php" option of the "output" parameter when making a request. You will get a serialized array containing all the info. Then in your PHP script, simply use the unserialize() function to get the array. Sebastian