I am working on an application which displays an HTML5-based mobile site via a UIWebView. As a workaround in response to Apple's IAP policies, which have become stricter in the past few months, I have been assigned the task of opening any and all pages with purchase links using Mobile Safari. However, since cookies are not shared among iOS applications, Safari does not maintain the session from the app, and therefore the user is forced to log in to the site when Safari opens the site URL.

As a workaround, I originally thought I could use NSURLCredentials, with a permanent persistence, to authenticate a user against a WWW-Authenticate protected realm. After authenticating against the page, the user is logged in to the site, then redirected to the pay URL. Indeed, Apple's documentation states "NSURLCredentialPersistencePermanent - Credential will be stored in the user’s keychain and shared with other applications."

NSLog(@"Setting credentials for Digest Authentication.");
NSURLCredential *credential = [NSURLCredential credentialWithUser:userIdString
                                                         password:digestPassword    //  A one-time value passed to the app
                                                                                    // when first logging in.
                                                      persistence:NSURLCredentialPersistencePermanent];
                                                                                    //  On OS X, permanent credentials are
                                                                                    // shared among applications.

NSURLProtectionSpace *protectionSpace = [[NSURLProtectionSpace alloc]
                                         initWithHost:example.com
                                         port:443
                                         protocol:@"https"
                                         realm:digestRealm
                                         authenticationMethod:NSURLAuthenticationMethodHTTPDigest];

[[NSURLCredentialStorage sharedCredentialStorage] setDefaultCredential:credential forProtectionSpace:protectionSpace];
[protectionSpace release];

Then, when the UIWebView was prompted to open a URL, a check would be made like so:

if ([webView shouldStartLoadWithRequest:request navigationType:navigationType] == YES) {
    if (isPayLink([request.URL absoluteString])) {
        NSURL *authURL = [NSURL URLWithString:[NSString stringWithFormat:@"https://www.example.com/authenticate/?backto=%@", [request.URL absoluteString]]];
            // redirect to authentication URL, login, then redirect to "backto" URL.
        NSLog(@"Opening %@ in Mobile Safari.", authURL);
        [[UIApplication sharedApplication] openURL:authURL];
        return NO;
    }
    return YES;
}

I recently discovered, however, that the documentation is misleading, as credentials are only shared among apps on OS X. It took me a while to realize this since credentials are also shared on the iOS Simulator (as it is an OS X application, after all).

I cannot think of another way to "persist" session information between the app and Safari, or a way to login the user via Safari. NSHTTPCookieStorage is not shareable, and passing the login credentials directly in the URL is dangerous and susceptible to man in the middle attacks, so these don't seem to be viable options. One solution mentioned in the responses to this question on SO is using custom URL handlers to pass information between apps. However, since I have no control over Mobile Safari this is not an option in my case.

Is there any way to use an iOS app to securely authenticate a user in Safari? Any and all suggestions appreciated.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.