I am using arduino UNO board, with modem sim800l. I want use it to send data to server, but the problem is that I receive 603 error when query parameters are supplied.
For
mySerial.println("AT+HTTPPARA=\"URL\",\"http://subdomain.domain.ro&val=1\"");
The response is a 603 error.
For
mySerial.println("AT+HTTPPARA=\"URL\",\"http://subdomain.domain.ro/&val=1\"");
The response is a 404 page.
It works fine for just:
mySerial.println("AT+HTTPPARA=\"URL\",\"http://subdomain.domain.ro\"");
I validate all urls agains browser and they work just fine and the data is received.
The server is a NodeJS application behind a Nginx proxy set up only for http protocol with no redirect.