0

我正在使用 eBay 的 python SDK,我正在尝试以编程方式获取所有项目过滤器。基本上这个列表(http://developer.ebay.com/DevZone/finding/CallRef/types/ItemFilterType.html

可能吗?

4

1 回答 1

1

如果您希望获取ItemFilterType值(例如ConditionAuhorizedSellerOnly )的完整列表,您可以通过解析用于 Finding API 的 WSDL 来实现。

WSDL 可在http://developer.ebay.com/webservices/Finding/latest/FindingService.wsdl 获得。想法是您可以下载该文件并搜索以下元素。

<xs:simpleType name="ItemFilterType">

在此元素中,您可以遍历以下元素。

<xs:enumeration/>

每个元素的 value 属性应该是您要查找的信息。下面的示例是您可以在 WSDL 中预期的简化版本。

<xs:simpleType name="ItemFilterType">
    <xs:enumeration value="Condition"></xs:enumeration>
    <xs:enumeration value="Currency"></xs:enumeration>
    <xs:enumeration value="EndTimeFrom"></xs:enumeration>
</xs:simpleType>
于 2013-08-22T20:50:34.413 回答