This repository was archived by the owner on Jun 15, 2020. It is now read-only.
Open
Conversation
… save parsed key-value pairs from request body
Author
|
Added POST example function |
milamber-ls
reviewed
Apr 16, 2018
| const char* str; | ||
| size_t len; | ||
| http_request_get_data(http_ctx, &str, &len); | ||
| parse_urlencoded_args(ctx, str, len); |
There was a problem hiding this comment.
why you did this? this code doesn't pass the form arguments correctly
Author
There was a problem hiding this comment.
Does it make sense that form_ctx (or simply ctx argument) refers to events others than HTTP_HANDLE_DATA so when we are parsing urlencoded arguments we are using the "original" context?
It works this way for me.
Author
|
Is there any news about analyzing these PR? @igrr and @milamber-ls ? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added an example function that initializes the http server, receive a GET request and respond a HTML containing a "Hello World, from ESP32!" content. Documentation was updated.