I am sending a long Webhook from Particle (still less than 255 characters) and the variables are created on Ubidots but no values are created under the variables and no response is coming back.
Any suggestions on how to start to figure this out?
Here is the Webook format:
{
"ccsTemp": "{{ccsTemp}}",
"ccsCO2": "{{ccsCO2}}",
"ccsTVOC": "{{ccsTVOC}}",
"bmeTemp": "{{bmeTemp}}",
"bmeBarometric": "{{bmeBarometric}}",
"bmeHumidity": "{{bmeHumidity}}",
"reset": "{{resetCount}}"
}
and here is what gets sent from the Particle Console:
{"data":"{\"ccsTemp\":95.50, \"ccsCO2\":0.00, \"ccsTVOC\":0.00,\"bmeTemp\":25.21, \"bmeBarometric\":1017.42,\"bmeHumidity\":42.26,\"resets\":3}","ttl":60,"published_at":"2018-05-22T21:27:49.962Z","coreid":"30002b001851353338363036","name":"Environmental_Hook"}
here is what Ubidots sends as a response:
{"data":"{\"ccstvoc\":[{\"status_code\":204}],\"bmetemp\":[{\"status_code\":204}],\"bmebarometric\":[{\"status_code\":204}],\"bmehumidity\":[{\"status_code\":204}],\"resets\":[{\"status_code\":400,\"errors\":{\"value\":[\"A valid number is required.\"]}}],\"ccstemp\":[{\"status_code\":204}],\"c","ttl":60,"published_at":"2018-05-23T03:52:35.437Z","coreid":"30002b001851353338363036","name":"Ubidots Hook"}
And the variables are created on Ubidots:
Is there an issue sending float values?
Am I sending too many values at once?
Am I exceeding the max length of a Webhook?
Thank you in advance for any help.
Chip