mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 09:05:56 +03:00
[GH-ISSUE #1071] IS there a way to disable automatic redirection to portal after AP connect? #913
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#913
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 @Hoel on GitHub (Jun 1, 2020).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1071
Basic Infos
Hardware
WiFimanager Branch/Release:
Esp8266/Esp32:
Hardware: ESP-12e, esp01, esp25
ESP Core Version: 2.4.0, staging
Description
Problem description
I need to pass an UUID as parameter of the portal URL, and the only way i found is to use two QR code:
• the first QR code sets the mobile to the correct AP
• the second QR code loads the portal with the UUID as URL parameter.
For this to work i need to prevent the mobile from loading automatically the portal after AP conncetion (192.168.4.1 in this case), is there a way to do this in wifimanager?
@tablatronix commented on GitHub (Jun 1, 2020):
In the alpha/dev version you can disable the captive portal
@Hoel commented on GitHub (Jun 1, 2020):
ok nice, i will give a try. Just to clarify : i dont want to totally disable the captive portal, i want to disable the fact that it is called automatically after the AP is connected, so i can call it manually in a second time (via QR code)
@tablatronix commented on GitHub (Jun 1, 2020):
ConfigPortal is what runs.
CaptivePortal is what auto redirects on wifi connection
@Hoel commented on GitHub (Jun 1, 2020):
ahh it makes sense, thank you for the insights.