解析cloude函数http请求不起作用

时间:2016-08-22 12:25:36

标签: javascript curl parse-platform

我已尝试使用curl的以下代码,但它现在正在工作,请看一下,谢谢

功能:

Parse.Cloud.define('hello', function(req, res) {
  res.success('Hello world!');
});

卷曲网址:

curl -X POST -H "X-Parse-Application-Id: xxx" -H "X-Parse-REST-API-Key: xxx" [http][xxx]/parse/functions/hello

错误:

Result: TypeError: Cannot call method 'runRequestListener' of undefined
at handleRequest (http.js:551:11)
at Parse.Cloud._runCustomEndpoint (<anonymous>:204:7)

1 个答案:

答案 0 :(得分:0)

知道了,

问题是网址。 我认为URL是我们的域名,但它是一个解析API,如下所示,CURL请求正常工作。

curl -X POST -H "X-Parse-Application-Id: xxx" -H "X-Parse-REST-API-Key: xxx" [https][api.parse.com]/1/functions/hello