Is there a way to have numbers in JSON from makeWebRequest be converted to double instead of float? I tried adding a "d" to the end of the number in PHP before it's sent but this just makes it a string instead.
Is there a way to have numbers in JSON from makeWebRequest be converted to double instead of float? I tried adding a "d" to the end of the number in PHP before it's sent but this just makes it a string instead.
I take it the numbers sent are getting truncated? In which case you could keep the d on end to force it to come through as a string. Then parse the values in the returned Dictionary with .substring().toDouble() where substring removes the d on the end.