- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用速卖通的 beautifulsoup 抓取产品详细信息。但这太慢而且太麻烦。
所以我注册了 Aliexpress API。一切正常。 但是如何使用 API 获取产品的描述?
我在帮助中心没有找到任何内容。谷歌也什么都没有。我也在用
https://github.com/EitherSoft/python-aliexpress-api-client
我觉得用API获取描述是不可能的吗?在我看来,API 的文档非常糟糕。
<小时/>现在我正在使用这个电话:
http://gw.api.alibaba.com/openapi/param2/2/portals.open/api.listPromotionProduct/MY_API_KEY?fields=imageUrl,productId&keywords=chess&highQualityItems=yes
此调用仅返回带有关键字“chess”的产品的图片、产品 ID。
但我怎样才能获得描述呢?
最佳答案
Comment: how can I get the description?
API 提供以下详细信息,没有描述
。
我假设您必须从 productUrl
获取它。
<小时/>config.py
'details': [ 'productId', 'productTitle', 'productUrl', 'imageUrl', 'originalPrice', 'salePrice', 'discount', 'evaluateScore', 'commission', 'commissionRate', '30daysCommission', 'volume', 'packageType', 'lotNum', 'validTime', 'storeName', 'storeUrl', 'allImageUrls',
Question: . I do not quite know what you mean?
使用以下内容您会得到什么:
from aliexpress_api_client import AliExpress
aliexpress = AliExpress('api_key', 'affiliate_id')
#Get product details:
product = aliexpress.get_product_details(['productId', 'productTitle', 'salePrice'], product_id)
print(product)
关于python - 如何使用API从速卖通获取产品描述?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45827914/
我是一名优秀的程序员,十分优秀!