I use the following URI to post a value from VirtualWrite.
The following url works (obfuscating the actual URI):
http://www.something.com/test?field1=/pin/
The service is called on my server with the correct pin value, but if I try to add more than one pin as so:
http://www.something.com/test?field1=/pin[0]/&field2=/pin[2]/ it fails to send any data.
My VirtualWrite looks like this:
Blynk.virtualWrite(
WEBHOOK_THINGSPEAK_VIN,
“45”,
“30”
);
I enabled serial debug and this is the output. It appears that VirtualWrite is being called with the correct values but the service is never called which makes me think it’s something on the server side.
[76163] <[14|00])[00|0F]vw[00]14[00]45[00]30
Thoughts?