I have an API in php, that sends data in JSON format. I made the following code, that works fine when I am on wifi. But when I want to download the data from the API when
Sometimes this error is caused as json encode function requires all incoming data to be UTF-8 encoded.
Try adding mysqli_set_charset($con, 'utf8'); into your php.
mysqli_set_charset($con, 'utf8');