我创建了zap并通过zapier运行javascirpt代码,出现以下错误:
We had trouble sending your test through.
> TypeError: Request path contains unescaped characters
那是什么意思?我的代码或输入数据有问题吗?
我的代码是:
fetch(
"test.s2.com.tr/Musteri/WebForm?_name=" +
inputData._name +
"&_email=" +
inputData._email +
"&_phone=" +
inputData._phone +
"&_source=" +
inputData._source +
"&_projeid=59b8d58fcec19d1f"
)
.then(function(res) {
return res.json();
})
.then(function(json) {
callback(null, json);
})
.catch(callback);