我真的对一个API结果感到困惑。
接口请求: GetMatchingProductForIdRequest / IdType ASIN
市场: DE A1PA6795UKMFR9
ASIN: B001B603YU
接口响应ListPrice:欧元81.99
亚马逊网址:http://www.amazon.de/gp/product/B001B603YU
亚马逊上的价格:44.17欧元
这是大清单中唯一一种价格不匹配的产品。
发布于 2015-11-02 23:22:06
我想你误解了这个接口。ListPrice的意思是建议零售价(在德语中是UVP = unverbindliche preisempfehrun.)这不是你可以在亚马逊上购买产品的价格。请参阅API调用GetCompetitivePricingForASIN来获取您想要的价格。示例:
<?xml version="1.0"?>
<GetCompetitivePricingForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
<GetCompetitivePricingForASINResult ASIN="B001B603YU" status="Success">
<Product xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01" xmlns:ns2="http://mws.amazonservices.com/schema/Products/2011-10-01/default.xsd">
<Identifiers>
<MarketplaceASIN>
<MarketplaceId>A1PA6795UKMFR9</MarketplaceId>
<ASIN>B001B603YU</ASIN>
</MarketplaceASIN>
</Identifiers>
<CompetitivePricing>
<CompetitivePrices>
<CompetitivePrice belongsToRequester="false" condition="New" subcondition="New">
<CompetitivePriceId>1</CompetitivePriceId>
<Price>
<LandedPrice>
<CurrencyCode>EUR</CurrencyCode>
<Amount>44.13</Amount>
</LandedPrice>
<ListingPrice>
<CurrencyCode>EUR</CurrencyCode>
<Amount>44.13</Amount>
</ListingPrice>
<Shipping>
<CurrencyCode>EUR</CurrencyCode>
<Amount>0.00</Amount>
</Shipping>
</Price>
</CompetitivePrice>
</CompetitivePrices>
<NumberOfOfferListings>
<OfferListingCount condition="Any">15</OfferListingCount>
<OfferListingCount condition="New">15</OfferListingCount>
</NumberOfOfferListings>
</CompetitivePricing>
<SalesRankings>
<SalesRank>
<ProductCategoryId>pet_products_display_on_website</ProductCategoryId>
<Rank>21552</Rank>
</SalesRank>
<SalesRank>
<ProductCategoryId>470605031</ProductCategoryId>
<Rank>453</Rank>
</SalesRank>
</SalesRankings>
</Product>
</GetCompetitivePricingForASINResult>
<ResponseMetadata>
<RequestId>aa089a13374fcd2ad</RequestId>
</ResponseMetadata>
</GetCompetitivePricingForASINResponse>https://stackoverflow.com/questions/33135672
复制相似问题