@semion1956 @tomerm
in script "main.py" under the function "send_responce_to_remote_server" there are 2 issues:
- in line 139 the number suppose to be 200 and not 500
- In the same function as above you are sending the request with a socket but it should include http headers.
for example we solved it like this:
import requests
resp = requests.post(...)
Thank you.
@semion1956 @tomerm
in script "main.py" under the function "send_responce_to_remote_server" there are 2 issues:
for example we solved it like this:
import requests
resp = requests.post(...)
Thank you.