mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #686] How to use WiFi Manager without the captive portal? #573
Labels
No labels
📶 WiFi
🕸️ HTTP
Branch
DEV Help Wanted
Discussion
Documentation
ESP32
Example
Good First Issue
Hotfix
In Progress
Incomplete
Needs Feeback
Priority
QA
Question
Task
Upstream/Dependancy
bug
duplicate
enhancement
invalid
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/WiFiManager#573
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sabersingh on GitHub (Aug 4, 2018).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/686
Hi there,
I want to use the WiFi manager to change the wifi credentials of my ESP device but without using the Captive portal, I want the user to configure the WiFi settings either from my app or from a web interface on the mDNS address(I don't want the captive portal to pop-up). If I can change the wifi credentials only by using the HTTP request then It should supposedly work for me.
PLEASE SOMEBODY HELP ME OUT ASAP, I HAVE A PROJECT TO SUBMIT. PLEASE!
Thanks in advance
@tablatronix commented on GitHub (Aug 4, 2018):
Well you can disable captiveportal, and start ondemand webportal in development version
@sabersingh commented on GitHub (Aug 4, 2018):
Hi @tablatronix
Thanks for such a quick reply. Actually I am currently in a very depressed state of mind and this project is very important for me, so please it would be of great help if you could put some light on it and briefly explain how exactly is that supposed to be done.
Thank you so very much once again for understanding.
@sabersingh commented on GitHub (Aug 4, 2018):
So while scrolling through some examples I was just wondering if just exclude the DNSserver part will it solve the part problem of disabling the captive portal? Also is there a way to simply remove the web interface and keep features of WiFi manager limited to HTTP requests?
@tablatronix commented on GitHub (Aug 7, 2018):
I have no idea what you are trying to do, #461
@sabersingh commented on GitHub (Aug 7, 2018):
@tablatronix I just want to connect to/Change WiFi credentials at runtime using my app or from a touch display that I have on board my Device, but I don't want Web interface/ Captive portal to show up. Just use the HTTP requests and connect to the WiFi
@tablatronix commented on GitHub (Aug 8, 2018):
development
@sabersingh commented on GitHub (Aug 8, 2018):
Oh! thanks Shawn, That was pretty neat! also what If I want to change the WiFi credentials during runtime only by using the hardware side, In simple words, I have a TFT display using which I want to change the WiFi credentials programatically, is it possible?
@tablatronix commented on GitHub (Aug 8, 2018):
I see no need to use wifimanager for that, just use esp begin(ssid,pass)
@sabersingh commented on GitHub (Aug 8, 2018):
I tried using esp begin function but it only works for the very first time when I reset the device but it wont work during the runtime.
@tablatronix commented on GitHub (Aug 8, 2018):
you might have to disconnect first
@sabersingh commented on GitHub (Aug 8, 2018):
Oh I see.. can you please share some example?
@tablatronix commented on GitHub (Aug 8, 2018):
WiFi.disconnect();
@sabersingh commented on GitHub (Aug 8, 2018):
Thank you so very much @tablatronix for helping and for all the assistance.