Question:
Hi everyone,
I noticed that the call to QuickGetStr() will return Information if the auth did succeed, while quickGetStr does not return any Information at all.
bool QuickGetStr(const char url, CkString &outStr); //working but login not succeeded
const char quickGetStr(const char *url); //does not work with Basic auth
Was it ment to work this way and why?
Solved
had to explicitly set:
http.put_BasicAuth(1);
But I still don't know why QuickgetStr() shows a failed Message on wrong Login (as it should be),and quickGetStr() does not?!
Internally, the lower-case alternative of any Chilkat method is calling the the upper-case alternative. Therefore, both methods call the exact same internal code..