Skip to content

Commit

Permalink
Merge pull request #3 from adamm/header-fields-too-long
Browse files Browse the repository at this point in the history
Community PR: Add documentation to resolve the "Header Fields are too long" issue
  • Loading branch information
forGGe authored Nov 28, 2023
2 parents a361672 + a1b8c1c commit 8b30530
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
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

0 comments on commit 8b30530

Please sign in to comment.