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
_method is set to HTTP_GET in the initializer list but is never set anywhere else. This will cause digest auth to fail for any other method apart from GET.
The quick fix is to replace _method with a call to method()
The text was updated successfully, but these errors were encountered:
Hi,
I spotted a bug in PsychicRequest.cpp which causes problems with Digest Auth:
PsychicHttp/src/PsychicRequest.cpp
Line 427 in 5856948
_method
is set to HTTP_GET in the initializer list but is never set anywhere else. This will cause digest auth to fail for any other method apart from GET.The quick fix is to replace _method with a call to method()
The text was updated successfully, but these errors were encountered: