简体   繁体   English

亚马逊产品广告API - 获取ASIN的所有OfferListingID

[英]Amazon Product Advertising API - Get all OfferListingID's for ASIN

As you know, it is possible that to find multiple offers for one ASIN on Amazon (different sellers), which byside compete to finally get the buy box. 如您所知,有可能在亚马逊(不同的卖家)上找到一个ASIN的多个优惠,然后竞争最终获得购买框。

Every offer for these ASIN has its unique OfferListingID, which makes it possible to address. 这些ASIN的每个优惠都有其独特的OfferListingID,可以解决这个问题。 But how can I get all the OfferListingID's for one ASIN? 但是如何才能获得一个ASIN的所有OfferListingID?

Example Request: 示例请求:

http://webservices.amazon.de/onca/xml?
    AWSAccessKeyId=[AccessKey]&
    AssociateTag=[AssociateTag]&
    IdType=ASIN&
    ItemId=B00A6N2TKK&
    Operation=ItemLookup&
    ResponseGroup=Offers&
    Service=AWSECommerceService&
    Timestamp=2016-07-24T20%3A27%3A50Z&
    Signature=[Signature]

The Response contains only one offer with its OfferListingID: 响应仅包含其OfferListingID的一个商品:
The current buy box winner. 目前的买入箱赢家。

What I want to have is the OfferListingID for another seller, which supports Amazon Prime but is a bit more expensive. 我想要的是另一个卖家的OfferListingID,它支持Amazon Prime,但价格稍贵。 With the OfferListingID I will be able to address these specific seller for example a remote cart on my website. 使用OfferListingID,我将能够在我的网站上找到这些特定卖家,例如远程购物车。

If I work with parameter conditions=All 如果我使用参数条件=全部
I get the right number of TotalNew (6) but TotalOffers is still 1 and should be 6 too: 我得到了正确数量的TotalNew(6),但TotalOffers仍然是1,也应该是6:

<Item>
  <ASIN>B00A6N2TKK</ASIN>
  <ParentASIN>B00A6N2P4K</ParentASIN>
  <OfferSummary>
    <LowestNewPrice>
      <Amount>###</Amount>
      <CurrencyCode>EUR</CurrencyCode>
      <FormattedPrice>EUR #,##</FormattedPrice>
    </LowestNewPrice>
    <TotalNew>**6**</TotalNew>
    <TotalUsed>0</TotalUsed>
    <TotalCollectible>0</TotalCollectible>
    <TotalRefurbished>0</TotalRefurbished>
  </OfferSummary>
<Offers>
  <TotalOffers>**1**</TotalOffers>
  <TotalOfferPages>1</TotalOfferPages>
  <MoreOffersUrl>

Where is the problem in my logic? 我逻辑中的问题在哪里? Is there another way to get a OfferListingID for an specific offer for an ASIN? 是否有其他方法可以获得ASIN特定报价的OfferListingID?

Thanks for your help!!! 谢谢你的帮助!!!

In here as my reaserch and understanding, it refer not for offers, but about sellers 在这里作为我的研究和理解,它不是提供报价,而是关于卖家

    <TotalNew>**6**</TotalNew>
    <TotalUsed>0</TotalUsed>
    <TotalCollectible>0</TotalCollectible>
    <TotalRefurbished>0</TotalRefurbished>

Here This item has 6 new item sellers, 0 used item sellers and so on.. It was true always with my studies on aws. 这个项目有6个新商品卖家,0个用过的商品卖家等等。这是真的总是我的研究aws。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 php,CodeIgniter-亚马逊产品广告API,如何从产品URL获取ASIN - php, CodeIgniter- Amazon Product Advertising API, how to get ASIN from a product URL 从Amazon Advertising Product API获取所有产品图像 - Get all product images from Amazon Advertising Product API 如何使用Amazon Product Advertising API检索所有有效的&#39;ProductGroup&#39; - How to retrieve all valid 'ProductGroup's with Amazon Product Advertising API Amazon API:如何使用Amazon的MWS API使用ASIN获取产品信息? - Amazon API: How do I use Amazon's MWS API to get product information using ASIN? 如何通过单项搜索从亚马逊的产品广告API获取所有产品? - How to get all products from Amazon's Product Advertising API with a single item search? 亚马逊产品广告api获取具有报价的产品 - amazon product advertising api get product with offers 从Amazon Product Advertising API获取所有优惠的列表 - Get list of ALL offers from Amazon Product Advertising API 如何使用Amazon Product Advertising API Scratchpad获取所有移动产品 - How to get All Mobile Product using Amazon Product Advertising API Scratchpad 如何从亚马逊的产品广告API中获取产品名称? - How do I get just the product name from Amazon's Product Advertising API? 有没有办法在亚马逊的新产品广告API中查找客户的所有评论? - Is there a way to lookup all reviews of a customer in Amazon's new Product Advertising API?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM