使用Python API添加新的送货地址时遇到了麻烦。
让我们把auth部分放在一边,假设我有customer_id。
我找不到如何使用正确的代码行来实现这一目标。 我搜索了shopify测试文件夹,但在那里找不到这样的例子。
有人能指出我正确的方向吗?
答案 0 :(得分:0)
虽然目前官方python Shopify API客户端中没有实现CustomerAddress
资源,但您可以将地址信息直接附加到addresses
资源的Customer
属性作为工作 - 周围:
customer_id = 1234567890
new_address = {
"address1": "123 Main Street",
"address2": "#5",
"city": "New York",
"company": "",
"country": "United States",
"name": "John Smith",
"phone": "",
"province": "New York",
"zip": "10001"
}
customer = shopify.Customer.find(customer_id)
customer.addresses.append(new_address)
customer.save()