我正在尝试从为 IBM Mobilefirst 创建的 http 适配器调用后端 POST Web 服务。这是代码:
var input = {
method : 'post',
returnedContentType : 'json',
path : '/JLRDurbanPilot/locator',
body:{
contentType:"application/json; charset=UTF-8",
content: JSON.stringify([{"model":"L"}])
}
}
return WL.Server.invokeHttp(input);
当我运行它时,我得到一个带有描述的 HTTP 状态 400 错误 - 客户端发送的请求在语法上不正确 ()。
有什么帮助吗?