eBay API - 通过UPC代码的电子产品的findItemsByProduct

问题描述 投票:0回答:1

我不知道为什么,但我无法登录eBay开发者论坛,所以我在这里发布关于eBay API的问题。

我试图通过使用带有“findItemsByProduct”资源的UPC代码来查找产品。根据官方网站(http://developer.ebay.com/DevZone/finding/CallRef/findItemsByProduct.html),

UPC—The UPC value for products in Music (e.g., CDs), DVD and Movie, and Video Game categories (or domains). If you know a product's UPC number, you can use this value instead of the eBay Reference ID to search for that product.

这是否意味着我们无法使用UPC代码查找电子产品(例如笔记本电脑)?实际上,我从未见过任何可以通过UPC查找检索的电子产品。

问候

ebay ebay-lms
1个回答
0
投票

只要卖家在列出项目时输入了UPC,就应该可以通过API找到它。但是,并非所有类别都支持输入UPC。要确定某个类别是否支持UPC,您可以调用GetCategoryFeatures并检查UPCIdentifierEnabled字段是否为true。

由于在美国站点(ID 0)上为类别计算机/平板电脑和网络>笔记本电脑和上网本> PC笔记本电脑和上网本(ID 177)调用GetCategoryFeatues在UPCIdentifierEnabled字段中返回true,您应该能够通过UPC搜索笔记本电脑。

请注意,并非所有国家/地区都使用UPC。例如,欧洲国家使用EAN(欧洲物品编号)。如果您在这些网站上搜索,则需要在调用GetCategoryFeatures时检查EANIdentifierEnabled字段的值。

© www.soinside.com 2019 - 2024. All rights reserved.