_POST_PRODUCT_DATA_ フィード内の「ProductData」ノードには、アイテムが属するカテゴリに固有のデータが含まれています。(常に)直接的な関係がないように見えるため、アイテムが含まれるカテゴリをXSDにマッピングする必要があります。「GetProductCategoriesForASIN」を呼び出してもあまり役に立たないようです。「Categories」の ProductCategoryName とは何ですか? (以下のように)
<?xml version="1.0"?>
<GetProductCategoriesForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
<GetProductCategoriesForASINResult>
<Self>
<ProductCategoryId>166099011</ProductCategoryId>
<ProductCategoryName>Building Sets</ProductCategoryName>
<Parent>
<ProductCategoryId>166092011</ProductCategoryId>
<ProductCategoryName>Building Toys</ProductCategoryName>
<Parent>
<ProductCategoryId>165795011</ProductCategoryId>
<ProductCategoryName>Categories</ProductCategoryName>
<Parent>
<ProductCategoryId>165793011</ProductCategoryId>
<ProductCategoryName>Categories</ProductCategoryName>
</Parent>
</Parent>
</Parent>
</Self>
</GetProductCategoriesForASINResult>
<ResponseMetadata>
<RequestId>0ce91472-4234-4222-8fd8-d56714db18ba</RequestId>
</ResponseMetadata>
</GetProductCategoriesForASINResponse>
要するに、私が本当に知りたいのは、新しい製品または既存の ASIN を持つ製品の場合、カテゴリ ID または名前を取得し、これを正しい XSD にマップして、カテゴリ固有のオプションの正しいセットを返す方法です。
ありがとう。