-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't find parameters in Safari on OSX #9
Comments
Confirmed on OSX Safari. Entering an SSID and password then configure button leads to a connection reset on /configure. Refreshing the page returns "Parameters not found" Checking the ESP8266 filesystem shows there is no .ini file created. Safari Version 12.0 (13606.2.11) on OSX 10.13.6 Works fine with Firefox 62.0.3 |
I've got the same issue with ESP32. I can see WiFi network and connect to it. Then I can browse from iPhone Safari to 192.168.4.1, but when I want to save password I am receiving "Parameters not found" On Android phone work as expected |
Has this issue been resolved? I cannot set wifi SSID and PW using any browser in iOS. I get the same 'Parameters not found error' as above. |
This is because Safari sends the data in the Request Body, i.e. after the After this block (i.e. lines 286-290):
Add this block (i.e. starting line 291):
before the original code continues:
|
How about solving special characters like ¡, @, ö, etc which get encoded like %40 for @?
|
Sorry, that's an altogether separate issue, #8 |
This did not work for me, yet. The request includes only the first 7 characters of the password. Any suggestion? |
@DanielBustillos Is the 8th character a space, or special character? There seems to be bugs with spaces in SSIDs, so maybe there are bugs with spaces in passwords. |
It. is not, but I was pasting an invisible non utf8 character. Everything is working. |
I suspect its the regex, but idk. it does find the params in chrome but then can't find my AP name, possibly due to spaces being replaced with pluses.
The text was updated successfully, but these errors were encountered: