I have been using Batch requests (ItemSearchRequest) to get two ISBNs worth of info at a time from Amazon. The problem is that I need this info quickly, and there are over 700,000 ISBNs to check. So, two per second will not cut it for me; I don't want to wait a week.
Some reading has alerted me to the wonders of ItemLookupRequests, where I can request up to 10 ISBN numbers at a time. I have been working with some code that I found on this site (credit due where it's deserved), but I am unable to get past an error, "NullReferenceException - Object reference not set to an instance of an object."
I am a little green to C#, mostly I work in VB.
Here is the code:
// prepare an ItemSearch request
ItemLookup itemLookup = new ItemLookup()
{
AssociateTag = "mytag"
};
itemLookup.AWSAccessKeyId =accessKeyId;
ItemLookupRequest itemLookupRequest = new ItemLookupRequest();
itemLookupRequest.IdTypeSpecified = true;
itemLookupRequest.IdType = ItemLookupRequestIdType.ISBN;
itemLookupRequest.ItemId = new String[] { value[0],value[1],value[2],value[3],value[4],value[5],value[6],value[7],value[8],value[9]};
itemLookupRequest.ResponseGroup = new String[] { "Large" };
itemLookup.AWSAccessKeyId = accessKeyId;
itemLookup.AssociateTag = "mytag";
itemLookup.Request = new ItemLookupRequest[] { itemLookupRequest };
ItemLookupResponse response = client.ItemLookup(itemLookup);
foreach (var item in response.Items[0])//(var item in response.Items[0].Item)
{
//Do something...
try
{
amazonTotal[1] = item.OfferSummary.LowestNewPrice.Amount;
amazonTotal[2] = item.ItemAttributes.ListPrice.Amount;
amazonTotal[3] = item.ItemAttributes.Title;
amazonTotal[4] = item.ItemAttributes.Edition;
amazonTotal[5] = item.ItemAttributes.Author[0];
amazonTotal[6] = item.ItemAttributes.PackageDimensions.Weight.Value.ToString();
amazonTotal[7] = item.SalesRank;
amazonTotal[8] = item.LargeImage.URL;
amazonTotal[9] = item.ItemAttributes.Binding;
amazonTotal[10] = item.ItemAttributes.Publisher;
amazonTotal[11] = item.ItemAttributes.PublicationDate;
amazonTotal[12] = item.ItemAttributes.BookSizeDescription.Value;
amazonTotal[13] = item.Offers.Offer.ToString();
amazonTotal[14] = item.ItemAttributes.TradeInValue.ToString();
}
catch
{
}
}