ESP32 http server httpd_uri_match_wildcard
Posted: Fri Jan 25, 2019 8:50 am
Hi,
I'm using ESP32 IDF and want to use the http server (started from demo) that is working.
Now when a set the wildcard
and register using
the callback handler is called as desired.
But now in this handler I need to know the requested path in URL.
How is this be done?
Regards
Jorg
I'm using ESP32 IDF and want to use the http server (started from demo) that is working.
Now when a set the wildcard
Code: Select all
config.uri_match_fn = httpd_uri_match_wildcard;
Code: Select all
httpd_register_uri_handler
But now in this handler I need to know the requested path in URL.
How is this be done?
Regards
Jorg