You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
XIO #8,253,0,0,U$
XIO #8,254,0,0,P$
NOPEN 8,4,0,URL$
... it feeds me "no username or password provided."
U$="N:my_username"
P$="N:mypassword"
URL$=working url clearly because I am getting the response
Be able to fill out the auth_type field in esp_http_client() so that the appropriate BASIC or DIGEST request can be made for HTTP endpoints that require authentication in those two methods.
Given the following BASIC code
or via the URL
Be able to fill out the auth_type field in esp_http_client() so that the appropriate BASIC or DIGEST request can be made for HTTP endpoints that require authentication in those two methods.
Relevant changes would need to be made in the fnHTTPClient:
https://github.com/FujiNetWIFI/fujinet-platformio/blob/master/lib/http/fnHttpClient.cpp#L45
and in the HTTP protocol adapter:
https://github.com/FujiNetWIFI/fujinet-platformio/blob/master/lib/network-protocol/HTTP.cpp
The relevant information for the esp_http_client is here:
https://docs.espressif.com/projects/esp-idf/en/v4.3-beta2/esp32s2/api-reference/protocols/esp_http_client.html#http-authentication
with one additional command added to set the AUTH type.
The text was updated successfully, but these errors were encountered: