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
@tciuro I'm not too familiar with request authentications. How would this be different than settings the Authorization HTTP header field as I currently do?
The difference is that you're providing Basic-type authentication, which is weaker than its Digest-based counterpart. Digest Authentication communicates credentials in an encrypted form by applying a hash function to the the username, the password, a server supplied nonce value, the HTTP method, and the requested URI, whereas Basic Authentication uses unencrypted base64 encoding. Basic Authentication should generally only be used where transport layer security is provided such as https.
Checkout the example of using the connection:didReceiveAuthenticationChallenge: delegate method:
Hello Sam,
I was just wondering... is there a reason why you're not implementing the challenge callback?:
That would take care of BASIC and DIGEST-based authentication.
The text was updated successfully, but these errors were encountered: