#AmazonItemLookup
##Easy item lookup by ASIN from Amazon Product Advertising API
The package can be installed through nuget package manager and you can use the following command to install it.
Install-Package AmazonItemLookup
AwsProductApiClient api = new AwsProductApiClient(new ProductApiConnectionInfo
{
AWSAccessKey = config.AWSAccessKey,
AWSSecretKey = config.AWSSecretKey,
AWSAssociateTag = config.AWSAssociateTag,
[AWSServerUri = "webservices.amazon.co.uk"]
});
AwsItem item = api.LookupByAsin(ASIN);
AwsCart cart = api.CreateCart(new CartItem { Asin = "B0071YIFJ6" }, new CartItem { Asin = "B001H1SVO8" });
- Update the package version on src/NKCraddock.AmazonItemLookup/NKCraddock.AmazonItemLookup.dll.nuspec
- Execute the file src/CreatePackage.bat
Marcos Placona - Twilio
- Add support for CreateCart
- Add support for localized Amazon websites
- Create Nuget package
- Add nuget creation files