Thomas Cristo
Results
2
comments of
Thomas Cristo
Replace ``` DynamicJsonBuffer jsonBuffer; JsonArray& root = jsonBuffer.parseArray(response); ``` with: ``` DynamicJsonDocument root(1024); DeserializationError error = deserializeJson(root, response); ``` and on error: ``` if(error){ responseObject.error = error.c_str(); } // else...
Hello, now the CoinMarketCap API is down. I tried to use the free API with an API-Token. This can work, but I can't parse the response from the API. (BTW...