I created my zap and Run javascirpt code by zapier, I get the following error:
We had trouble sending your test through.
> TypeError: Request path contains unescaped characters
What does that mean? It is a problem about my code or the input data?
My code is:
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);