I got this error, when i uploaded the file 'latest' onto my webspace. It seems, that my hosting company allows only a few file extensions. I had to change line 108 in 'uota.py':
Original:
response = urequests.get(ota_config['url'] + 'latest', auth=auth)
Modified:
response = urequests.get(ota_config['url'] + 'latest.txt', auth=auth)
I uploaded the file 'latest.txt' and the process worked.
I got this error, when i uploaded the file 'latest' onto my webspace. It seems, that my hosting company allows only a few file extensions. I had to change line 108 in 'uota.py':
Original:
response = urequests.get(ota_config['url'] + 'latest', auth=auth)Modified:
response = urequests.get(ota_config['url'] + 'latest.txt', auth=auth)I uploaded the file 'latest.txt' and the process worked.