Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 1

An Amazon Review and Wish List Consumer for .NETGet your Reviews and Wish List from Amazon then store it locally in XML format. IntroductionTo use this module for your own Amazon reviews and product lists you will need to sign-up for the following: An Amazon Web Service (AWS) access key. ... [More] http://aws.amazon.com/ An Amazon Associates tag. https://affiliate-program.amazon.com/gp/associates/join An Amazon Account. http://www.amazon.com/gp/css/homepage.html Then you will need to write a review or create a wish list, and then find the following: The listid you want to retrieve a list from. Don't know where to find this? I found my ListId by navigating to my wish list: http://www.amazon.com/gp/registry/registry.html/?id=3JU6ASKNUS7B8 then pulling out 3JU6ASKNUS7B8 (the identifier after id= from the url). The CustomerId you want to retrieve reviews from. Don't know where to find this? I found my CustomerId by navigating to my reviews: http://www.amazon.com/gp/cdp/member-reviews/A2JM0EQJELFL69/ then pulling out A2JM0EQJELFL69 (the last element of the url). Example //Hydrate the request object with your Amazon details IAmazonRequest amazonRequest = new AmazonRequest(); amazonRequest.AssociateTag = "adamkahtavaap-20"; amazonRequest.AWSAccessKeyId = "1MRF________MR2"; amazonRequest.CustomerId = "A2JM0EQJELFL69"; amazonRequest.ListId = "3JU6ASKNUS7B8"; //Hydrate your file parameter object with your file details (where you want the files saved to) IFileParameters fileParameters = new FileParameters(); string folderPath = Path.Combine(HttpContext.Current.Request.PhysicalApplicationPath, "Xml"); fileParameters.ProductFileNameAndPath = folderPath + @"\Products.xml"; fileParameters.ReviewFileNameAndPath = folderPath + @"\Reviews.xml"; fileParameters.ErrorFileNameAndPath = folderPath + @"\Errors.xml"; IAmazonApplication amazonApplication = new AmazonApplication(amazonRequest, fileParameters); amazonApplication.Save(); [Less]

0
 
  0 reviews  |  0 users  |  67,859 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.