Troubleshooting Guide
Error 500 Code While Retrieving Access Tokens or Making API Calls
- Revoke the access tokens issued earlier to reduce to the number of connected devices.
- Wait 24 hours for the tokens to expire before issuing new access tokens.
Serial Monitor Output is Displaying Random Symbols
- Check that your Serial monitor speed in your code is the same value set in
your platformio.ini file.Note: By default, the monitor speed is set to 9600 even if it is not defined in the file.Tip: Serial Monitor speed can be defined by the adding the following line:
monitor_speed = 115200 //change to the value you want
Inconsistency in HTTP Response Status Codes
- Add a delay between requests
- Use ”try-except” in Python or ignore the error message until the request succeeds