Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,12 @@ EXTRA_COMPONENT_DIRS := components/
include $(IDF_PATH)/make/project.mk
```

Update your `sdkconfig.defaults` to allow for larger HTTP Request URL lengths. This is required by some operating systems in order to use its captive portal UI to configure wifi.

```config
CONFIG_HTTPD_MAX_URI_LEN=1024
```

Once this is done, you can now in your user code add the header:

```c
Expand Down
1 change: 1 addition & 0 deletions examples/default_demo/sdkconfig.defaults
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
CONFIG_LWIP_IPV6=y
CONFIG_HTTPD_MAX_URI_LEN=1024
1 change: 1 addition & 0 deletions examples/http_hook/sdkconfig.defaults
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
CONFIG_LWIP_IPV6=y
CONFIG_HTTPD_MAX_URI_LEN=1024