user3274859
user3274859

Reputation: 1

Amazon Product advertising c# api

Hi guys I'm having trouble fetching products from amazon web api.

I have used this code from the internet, adding all the neccessary references. I tried adding a view and chose itemsearchresponce as the model class but it does not display the product, I get the following error:

Unable to generate a temporary class (result=1). error CS0029: Cannot implicitly convert type 'AmazonProduct.com.amazon.webservices.ImageSet' to 'AmazonProduct.com.amazon.webservices.ImageSet[]'

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

using AmazonProduct.com.amazon.webservices;
namespace Forest.Controllers
{
    public class AmazonController : Controller
    {
        private AmazonProduct.com.amazon.webservices.AWSECommerceService _Products;

        public AmazonController()
        {
            _Products = new AmazonProduct.com.amazon.webservices.AWSECommerceService();
        }

        [HttpGet]
        public ActionResult  listProducts()
        {
            var searchIndex = "Shoes";
            var keywords = "jordan";
            // Create an ItemSearch wrapper
            ItemSearch search = new ItemSearch();
            search.AssociateTag = "[Your Associate ID]";
            search.AWSAccessKeyId = "MyKey";
            // search.Version= "2011-08-01";

            // Create a request object
            ItemSearchRequest request = new ItemSearchRequest();

            // Fill the request object with request parameters
            request.ResponseGroup = new string[] { "ItemAttributes" };

            // Set SearchIndex and Keywords
            request.SearchIndex = searchIndex;
            request.Keywords = keywords;

            // Set the request on the search wrapper
            search.Request = new ItemSearchRequest[] { request };

            ItemSearchResponse response = _Products.ItemSearch(search);

            return View(response);
        }
    }
}

Upvotes: 0

Views: 1697

Answers (1)

Kniganapolke
Kniganapolke

Reputation: 5393

Go to the generated proxy and replace ImageSet[][] with ImageSet[].
Also take a look at Amazon Product Advertising API C# if you already haven't.

Upvotes: 1

Related Questions