2017-05-24 46 views
1

如果使用Products_GetLowestOfferListingsForASIN方法MWS得到所有产品的定价

http://docs.developer.amazonservices.com/en_US/products/Products_GetLowestOfferListingsForASIN.html

你得到3个报价

<GetLowestOfferListingsForASINResponse 
xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01"> 
<GetLowestOfferListingsForASINResult ASIN="B002KT3XQM" status="Success"> 
    <AllOfferListingsConsidered>true</AllOfferListingsConsidered> 
    <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>ATVPDKIKX0DER</MarketplaceId> 
       <ASIN>B002KT3XQM</ASIN> 
      </MarketplaceASIN> 
     </Identifiers> 
     <LowestOfferListings> 
      <LowestOfferListing> 
       <Qualifiers> 
        <ItemCondition>Used</ItemCondition> 
        <ItemSubcondition>VeryGood</ItemSubcondition> 
        <FulfillmentChannel>Merchant</FulfillmentChannel> 
        <ShipsDomestically>True</ShipsDomestically> 
        <ShippingTime> 
         <Max>0-2 days</Max> 
        </ShippingTime> 
        <SellerPositiveFeedbackRating>90-94%</SellerPositiveFeedbackRating> 
       </Qualifiers> 
       <NumberOfOfferListingsConsidered>1</NumberOfOfferListingsConsidered> 
       <SellerFeedbackCount>762</SellerFeedbackCount> 
       <Price> 
        <LandedPrice> 
         <CurrencyCode>USD</CurrencyCode> 
         <Amount>32.99</Amount> 
        </LandedPrice> 
        <ListingPrice> 
         <CurrencyCode>USD</CurrencyCode> 
         <Amount>28.00</Amount> 
        </ListingPrice> 
        <Shipping> 
         <CurrencyCode>USD</CurrencyCode> 
         <Amount>4.99</Amount> 
        </Shipping> 
       </Price> 
       <MultipleOffersAtLowestPrice>False</MultipleOffersAtLowestPrice> 
      </LowestOfferListing> 
      <LowestOfferListing> 
       <Qualifiers> 
        <ItemCondition>New</ItemCondition> 
        <ItemSubcondition>New</ItemSubcondition> 
        <FulfillmentChannel>Amazon</FulfillmentChannel> 
        <ShipsDomestically>True</ShipsDomestically> 
        <ShippingTime> 
         <Max>0-2 days</Max> 
        </ShippingTime> 
        <SellerPositiveFeedbackRating>98-100%</SellerPositiveFeedbackRating> 
       </Qualifiers> 
       <NumberOfOfferListingsConsidered>1</NumberOfOfferListingsConsidered> 
       <SellerFeedbackCount>181744</SellerFeedbackCount> 
       <Price> 
        <LandedPrice> 
         <CurrencyCode>USD</CurrencyCode> 
         <Amount>34.27</Amount> 
        </LandedPrice> 
        <ListingPrice> 
         <CurrencyCode>USD</CurrencyCode> 
         <Amount>34.27</Amount> 
        </ListingPrice> 
        <Shipping> 
         <CurrencyCode>USD</CurrencyCode> 
         <Amount>0.00</Amount> 
        </Shipping> 
       </Price> 
       <MultipleOffersAtLowestPrice>False</MultipleOffersAtLowestPrice> 
      </LowestOfferListing> 
      <LowestOfferListing> 
       <Qualifiers> 
        <ItemCondition>New</ItemCondition> 
        <ItemSubcondition>New</ItemSubcondition> 
        <FulfillmentChannel>Amazon</FulfillmentChannel> 
        <ShipsDomestically>True</ShipsDomestically> 
        <ShippingTime> 
         <Max>0-2 days</Max> 
        </ShippingTime> 
        <SellerPositiveFeedbackRating>95-97%</SellerPositiveFeedbackRating> 
       </Qualifiers> 
       <NumberOfOfferListingsConsidered>1</NumberOfOfferListingsConsidered> 
       <SellerFeedbackCount>13213</SellerFeedbackCount> 
       <Price> 
        <LandedPrice> 
         <CurrencyCode>USD</CurrencyCode> 
         <Amount>41.18</Amount> 
        </LandedPrice> 
        <ListingPrice> 
         <CurrencyCode>USD</CurrencyCode> 
         <Amount>41.18</Amount> 
        </ListingPrice> 
        <Shipping> 
         <CurrencyCode>USD</CurrencyCode> 
         <Amount>0.00</Amount> 
        </Shipping> 
       </Price> 
       <MultipleOffersAtLowestPrice>False</MultipleOffersAtLowestPrice> 
      </LowestOfferListing> 
     </LowestOfferListings> 
    </Product> 
</GetLowestOfferListingsForASINResult> 
<ResponseMetadata> 
    <RequestId>60979901-82af-457b-8bdd-EXAMPLE28478</RequestId> 
</ResponseMetadata> 

但是如果我访问产品页面:

https://www.amazon.com/gp/offer-listing/B002KT3XQM/ref=olp_page_1?ie=UTF8&f_new=true

我看到13个优惠。

是否有可能获得全部13个优惠?

回答

1

GetLowestOfferListingsForASIN打电话给你一个结果为每组所谓的“限定符”。你举的例子显示了三种不同套这样的预选赛:

  • 手车VeryGood->适销>道道通> 0-2天 - > 90-94%为$ 32.99(包括shippng)
  • 新建 - >新 - >亚马逊 - >真 - > 0-2天 - > 98-100%为$ 34.27
  • 新 - >新 - >亚马逊 - >真 - > 0-2天 - > 95-97%为41.18美元

什么我百思不得其解,是没有新的“商人”的优惠被证明,当我真的认为他们应该:

  • New-> New-> Merchant-> True-> 0-2 days-> 98-100%将是不同的第四组限定符。

你真的好像在寻找的是一个不同的电话:GetLowestPricedOffersForASIN最多可为单个ASIN返回20个不同的优惠。