我收到错误消息:请求失败; 0-111没有错误;用庞大的身体调用Parse.Cloud.httpRequest时拒绝连接。
那是我的代码:
var retPrm = new Parse.Promise(); Parse.Cloud.httpRequest({ method: "POST", url: "https://SOMEURL/integration_io.asmx", headers: {"Content-Type":"text/xml"}, body: body, success: function(httpResponse) { retPrm.resolve(httpResponse); }, error: function(httpResponse) { retPrm.reject( httpResponse); } }); return retPrm;
我认为身体是问题所在。它是一个SOAP Envelop,非常丑陋,而且很大。它有32,455个字节。当然,当我使用1,144字节的主体运行相同的功能时,它就像魅力一样运行。
任何提示?
谢谢,
的奥斯卡