我尝试通过HTTP从Worklight适配器调用rest服务但是我收到以下错误:
[ERROR ] FWLSE0035E: Invocation of procedure 'HttpRequest' failed. [project *****]
can't parse argument number
"arr": [
{
"method": "get"
如果我打开我在浏览器中调用的URL,它会返回一个没有问题的json文件。
我该如何解决?
答案 0 :(得分:1)
确保正确实施适配器。这是我项目中的样本。
我的适配器名为Orders。
orders.xml中
<?xml version="1.0" encoding="UTF-8"?>
<wl:adapter name="Orders"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:wl="http://www.worklight.com/integration"
xmlns:http="http://www.worklight.com/integration/http">
<displayName>Orders</displayName>
<description>Orders</description>
<connectivity>
<connectionPolicy xsi:type="http:HTTPConnectionPolicyType">
<protocol>https</protocol>
<domain>izify.com</domain>
<port>443</port>
</connectionPolicy>
<loadConstraints maxConcurrentConnectionsPerNode="2" />
</connectivity>
<procedure name="getOrders"> </procedure>
</wl:adapter>
订单-impl.js
function getOrders() {
var input = {
method : 'get',
returnedContentType : 'json',
path : "get_all_orders.php",
parameters:{merchantId:"xxxxxxxxxxxxxxxxx"}
};
return WL.Server.invokeHttp(input);
}
如果您仍然不了解相关内容,可以在此处阅读有关HTTP适配器的文档。