I'm making a webrequest and I'm currently getting a -403 response for my 935 ( I have about 13KB of free memory when I make this request), the JSON I'm receiving is ~4.7KB.
As stated in the API documentation;
NETWORK_RESPONSE_TOO_LARGE = -402 Serialized response was too large. Since: 1.0.0 NETWORK_RESPONSE_OUT_OF_MEMORY = -403 Ran out of memory processing network response. Since: 3.0.0
My questions are;
For a -402 response, What is the largest network response a watch can receive?
For a -403 response, is this an issue present with available memory on the device? say I have 5kb of free space but the network response is 6kb, is this what throws a -403?
Thanks