Amazon Product Advertising API Signing Issues
i am trying to search in amazon product database with the following code posted in amazon webservice sample codes page AWSECommerceService ecs = new AWSECommerceService(); // Create ItemSearch wrapper ItemSearch search = new ItemSearch(); search.AssociateTag = "ABC"; search.AWSAccessKeyId = "XYZ"; // Create a request object ItemSearchRequest request = new ItemSearchRequest(); // Fill request object with request parameters request.ResponseGroup = new string[] { "ItemAttributes" }; // Set SearchIndex and Keywords request.SearchIndex = "All"; request.Keywords = "The Shawshank Redemption"; // Set