TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Arthur Ariel Sabintsev.
An iOS Objective-C category for performing HTTP Basic Access Authentication, aka Basic auth.
Most solutions for performing Basic auth on iOS involve the use of 3rd party Base64 libraries. Apple has provided native functions within the CFNetworking framework, removing the need for 3rd party libraries. This category wraps the solution into one clean and reusable method.
:
)NSMutableURLRequest+BasicAuth.h
into your class(es).CFNetworking
framework.NSMutableURLRequest
and make sure to set the following properties:
URL
HTTPMethod
basicAuthForRequest:withUsername:andPassword
method with your request.NSURLConnection
and load your Basic auth request.+ (void)basicAuthForRequest:(NSMutableURLRequest *)request withUsername:(NSString *)username andPassword:(NSString *)password;
// Cast username and password as CFStringRefs via Toll-Free Bridging
CFStringRef usernameRef = (__bridge CFStringRef)username;
CFStringRef passwordRef = (__bridge CFStringRef)password;
// Reference properties of the NSMutableURLRequest
CFHTTPMessageRef authoriztionMessageRef = CFHTTPMessageCreateRequest(kCFAllocatorDefault, (__bridge CFStringRef)[request HTTPMethod], (__bridge CFURLRef)[request URL], kCFHTTPVersion1_1);
// Encodes usernameRef and passwordRef in Base64
CFHTTPMessageAddAuthentication(authoriztionMessageRef, nil, usernameRef, passwordRef, kCFHTTPAuthenticationSchemeBasic, FALSE);
// Creates the 'Basic - <encoded_username_and_password>' string for the HTTP header
CFStringRef authorizationStringRef = CFHTTPMessageCopyHeaderFieldValue(authoriztionMessageRef, CFSTR("Authorization"));
// Add authorizationStringRef as value for 'Authorization' HTTP header
[request setValue:(__bridge NSString *)authorizationStringRef forHTTPHeaderField:@"Authorization"];
// Cleanup
CFRelease(authorizationStringRef);
CFRelease(authoriztionMessageRef);
An exception is thrown if the username contains a colon (e.g. :
).
Created by Arthur Ariel Sabintsev for ID.me, Inc.