通过 API 在 BigCommerce 商店中添加产品时出错
Error while adding a Product In BigCommerce Store through API
我想通过 Bigcommerce 在我们的 Bigcommerce 商店中添加产品 API。
我已使用以下 API 在我们的商店中添加产品 :-
URL : 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 - The specified input content type is not valid.
注意:系统要求我输入用户名和密码。我从旧 API 设置中输入了正确的用户名和令牌。
有人可以帮忙解决这个问题吗?
此错误是由于未指定 content-type header。 BigCommerce 接受 XML 或 JSON 作为类型。
我想通过 Bigcommerce 在我们的 Bigcommerce 商店中添加产品 API。
我已使用以下 API 在我们的商店中添加产品 :-
URL : 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 - The specified input content type is not valid.
注意:系统要求我输入用户名和密码。我从旧 API 设置中输入了正确的用户名和令牌。
有人可以帮忙解决这个问题吗?
此错误是由于未指定 content-type header。 BigCommerce 接受 XML 或 JSON 作为类型。