我正在尝试运行POST调用,使用“http://magentohost/api/rest/customers”从另一个平台在Magento上创建新客户。
请求因此消息失败:
{"messages":{"error":[{"code":400,"message":"Invalid Content-Type header"}]}}
然而,我明确指出Content-Type
如下:
Accept: application/json
Content-Type: application/json
Authorization : ...
身体是这样的:
{"website_id":"1","email":"test@test.com","telephone":"","group_id":"1","prefix":"Mme","firstname":"test","lastname":"test"}
当我使用相同的设置从chrome rest客户端触发请求时,请求正常。
GET方法也可以。
如果某人有同样的问题请帮忙!