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
Two performBasicAuth functions contain code duplication and also without separate header read function it isn't possible to check auth data without different response cases.
(Faced out with it because I am writing server what uses auth info as parameter, but response isn't depends from availability of auth info.)
The text was updated successfully, but these errors were encountered:
To rephrase it a little based on the conversation we are having in IRC I believe what is being asked for is to support optional verification of an auth request. For example, only requiring an auth request based on other factors of the request (such as what parameters are given). So basically something like enforceHTTP(/*some criteria that makes it not require auth */ || checkAuth(req), HTTPStatus.forbidden);
Two performBasicAuth functions contain code duplication and also without separate header read function it isn't possible to check auth data without different response cases.
(Faced out with it because I am writing server what uses auth info as parameter, but response isn't depends from availability of auth info.)
The text was updated successfully, but these errors were encountered: