设置
我经营的WooCommerce网上商店有几种产品,其中有些具有产品差异。
我使用WooCommerce REST API来调整网上商店中的内容。
我的代码
呼叫带有变体的产品
product = uk_wcapi.get('products/51369').json()
这很好。
该产品具有多种变体,
print(product['variations'])
给出所有变化:https://gist.github.com/LucSpan/8185fa540cdd4267744f6c49f4b2a698
问题
我似乎无法调用或编辑产品变体。
在explanation in the REST API documentation之后,当我尝试编辑51369
的第一个产品变体时
ID为52548
,即
product_variation_1 = uk_wcapi.get('products/51369/variations/52548').json()
product_variation_1
等于
{'code': 'rest_no_route',
'data': {'status': 404},
'message': 'No route was found matching the URL and request method'}
对于任何具有变化的产品的任何产品变化,我都会收到上述错误。
我在做什么错了?