我想通过Bigcommerce API在我们的Bigcommerce商店中添加产品。
我使用以下API在我们的商店中添加产品: -
网址:https://store-f8tya.mybigcommerce.com/api/v2/products
输入:POST
数据:行 - json
{
"name": "Plain T-Shirt",
"type": "physical",
"description": "This timeless fashion staple will never go out of style!",
"price": "29.99",
"categories": [21],
"availability": "available",
"weight": "0.5"
}
我正在接收以下错误:
415 - 指定的输入内容类型无效。
注意:我被要求输入用户名和密码。我已从旧版API设置中输入了正确的用户名和令牌。
有人可以帮忙解决这个问题吗?
答案 0 :(得分:1)
此错误是由于未指定内容类型标头造成的。 BigCommerce接受XML或JSON作为类型。