If I understand you correctly, you want to get the seller name of an offer listing. To do this you need to use the OfferFull response group as well as the MerchantId parameter set to All and the Condition parameter set to All. If you don't set the MerchantId you will only get Amazon listings and if you don't set the Condition parameter you will only get New listings.
Request:
http://ecs.amazonaws.com/onca/xml?
Service=AWSECommerceService&
AWSAccessKeyId=[AWS Access Key ID]&
Operation=ItemLookup&
ItemId=B00008OE6I&
ResponseGroup=OfferFull& <- important
MerchantId=All& <- important
Condition=All& <- important
&Timestamp=[YYYY-MM-DDThh:mm:ssZ]
&Signature=[Request Signature]
In your response you will need to look at the Items > Item > Offers > Offer > Merchant > Name node.
发布评论
评论(1)
如果我理解正确的话,您想要获取报价列表的卖家名称。为此,您需要使用
OfferFull
响应组以及设置为All
的MerchantId
参数和Condition
> 参数设置为全部
。如果您不设置MerchantId
,您将仅获得亚马逊列表,如果您不设置Condition
参数,您将仅获得新列表。请求:
在您的回复中,您需要查看
Items >项目>优惠>优惠>商户>名称
节点。If I understand you correctly, you want to get the seller name of an offer listing. To do this you need to use the
OfferFull
response group as well as theMerchantId
parameter set toAll
and theCondition
parameter set toAll
. If you don't set theMerchantId
you will only get Amazon listings and if you don't set theCondition
parameter you will only get New listings.Request:
In your response you will need to look at the
Items > Item > Offers > Offer > Merchant > Name
node.