asp.net - Is there any way to retrieve Amazon product code? -
i trying display amazon products of specific category on website using amazon product advertising api. writing code asp.net. being able retrieve price, title,image,url.i want product id amazon uses.i had @ documentation in had mentioned upc(universal product code) , asin.but have explained search based on upc , asin. confused how product id.
string requeststring ="service=awsecommerceservice" + "&version=2013-29-03" + "&operation=itemsearch" + "&associatetag=myassociatetag" + "&searchindex=" +category + "&itempage=5" + "&sort=relevancerank" + "&responsegroup=itemattributes,images" + "&keywords=" + keyword + "×tamp=[yyyy-mm-ddthh:mm:ssz]" ; can please me , tell me add itemid in requeststring. thank .
add response group "itemids" retrieve "asin" request parameter
- "&responsegroup=itemattributes,images,itemids"
upc returned "itemattributes" response group in code.it return upc if exists in amazon database.
Comments
Post a Comment