-
Notifications
You must be signed in to change notification settings - Fork 7.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for mutual authentication in esp_http_client #2688
Conversation
I hope this goes on and get implemented in the esp-idf :/ I've tried the code changes today as AndersKaloer sugest but my code seems not to be using mutual auth.
I contacted with my colleague that handles the server in order to get my hands on the server's log files. Any help would be greatly appreciated. |
Kostas, There are several guides available on the Internet on how to configure mutual authentication in Apache2. I suggest you to follow one of these and verify your setup using e.g. The same thing can be achieved with nginx using the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for adding this feature to esp_http_client
* add support for CORS headers * remove accidental function impl * rename setCORS to enableCORS, and add aliased function enableCrossOrigin
Add support for TLS mutual authentication (implemented recently in #2490) in esp_http_client.
This is very convenient for OTA updates, and has been tested with
esp_https_ota
and nginx.