Can an iPhone xcode application read cookies previously stored by Safari Mobile?

Solution 1:

To actually answer your question:

No.

Mobile Safari's cookies are not accessible from SDK apps. And each SDK app is given its own WebKit cache and cookie stores, so while cookies will persist within the same app, they aren't accessible betweeen apps.

Solution 2:

As of iOS 9 this is possible!

Use a sfSafariViewController.

You will need to setup:

  • A custom URL scheme in your app to receive cookie data.
  • The website you are getting cookies from will need to implement an API specific your app's custom URL scheme, to redirect back to your app.

You can clone this repo which has a fully working demo of this.

Hope this helps,

Liam

Solution 3:

There is actually an interesting way if you have access to a server url.

  1. In your app launch the server url with mobile safari.
  2. The target server url reads the cookie and redirects back to an app specific url (myapp://cookie=123)
  3. The app is then switched back and you can read that value from the url handler

It's a little hacky as the app would switch mobile safari and then immediately switch back to the app. But, it is possible.

Solution 4:

Note that on iOS 8, you're probably better using Safari Password Sharing to solve some of the use cases that give rise to this problem.

This is not directly possible, but with the cooperation of the web site it is possible.

To clarify, the user case is that an Objective C application wants to read the value of a cookie that has been set by a website in mobile safari. (ie. in particular, a UIWebView was not involved in setting the cookie)

Your app should do this:

  1. Launch mobile safari, using [[UIApplication sharedApplication] openURL:url];
  2. The URL should be a special one, eg. http://yourwebsite.com/give-ios-app-the-cookie
  3. On your website, when that url is launched, issue a redirect to your-app-url-scheme:cookievalue= (eg. angrybirds:cookievalue=hh4523523sapdfa )
  4. when your app delegate receives - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation process the url to get the cookie value

Note that you should not do this automatically when the application starts - the user will see the transfer to Mobile Safari and back, which is not a good user experience and Apple will reject your app (Apple also consider this to be "uploading user's personal data to server without their prior consent"). It would be better to do it in response to the user, paying attention to the user experience - eg. wait for the user to hit a "login" button, then do it, and if the user is not logged into your website, http://yourwebsite.com/give-ios-app-the-cookie should show the user the login screen within safari. If the user is logged in you could briefly show a "Automatically logging you in..." screen for a second or two in Safari before redirecting the user back.

There's no way to get this to work with hotmail/gmail/etc of course - it needs to be your own website.

Credit goes to Unique Identifier for both mobile safari and in app in iOS for suggesting this kind of approach.

Solution 5:

Because of sandboxing on the iPhone you don't have access to Safari's cookies. You can only access cookies created within your application - by an UIWebView for example.