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
Since it did not accept username and password (that I copy-pasted in the browser from the expected values, but that will eventually be a different issue), I changed DIGEST_AUTH to BASIC_AUTH and it worked.
What's "not working" is that, now that I reflashed the sketch with DIGEST_AUTH, I have no way to tell it to stop accepting BASIC authentication.
That's quite obvious, since authenticate() does not have a clue about the type of authentication it should expect/accept: if any auth is present in the headers, and credentials match, it considers auth done and requestAuthentication() will not be called.
The text was updated successfully, but these errors were encountered:
I have the following callback function for pages requiring authentication:
Since it did not accept username and password (that I copy-pasted in the browser from the expected values, but that will eventually be a different issue), I changed DIGEST_AUTH to BASIC_AUTH and it worked.
What's "not working" is that, now that I reflashed the sketch with DIGEST_AUTH, I have no way to tell it to stop accepting BASIC authentication.
That's quite obvious, since authenticate() does not have a clue about the type of authentication it should expect/accept: if any auth is present in the headers, and credentials match, it considers auth done and requestAuthentication() will not be called.
The text was updated successfully, but these errors were encountered: