我已尝试使用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)
答案 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