mcer12 / Hugo-ESP8266

Hugo is a 4-button ESP8266 Wi-Fi Remote, Arduino compatible and simple to use.
MIT License
110 stars 11 forks source link

HTTP (Basic URL trigger) #32

Closed patrickdej closed 3 years ago

patrickdej commented 4 years ago

Hello, we have inserted an URL into the Hugo, but the request is executed as a TCP message and not as an http request (seen in wireshark) Whats wrong?

URL set to this http://172.20.20.153:8080/#/Main/Acknowledge?Sendkey=T1_S1_G when executing this URL from an phone on the same network (just past it into the browser), it works fine. so no issue on firewall. 172.20.20.122 is the phone, TCP connection OK, http OK 172.20.20.170 is the Hugo ==> TCP NOK and thus no http transfer possible image

thanks,

Patrick

mcer12 commented 4 years ago

Hi, I think this might have something to do with the port in your URL address. I never tried/needed this so this is probably what's the issue here. Lets start by removing the port from the URL address (so it will be 80 by default), see if it works.

patrickdej commented 4 years ago

OK, works fine now. was due to the way the website worked, it needed more then only 1 url... thanks!