up vote 1 down vote favorite
1
share [g+] share [fb]

I need to be able to use https to connect to a server and I'm wondering if there's recommended way of doing this on the iPhone that's NOT: - an undocumented api call - does not require manually storing certificates in the app bundle

Thanks all.

link|improve this question

76% accept rate
feedback

2 Answers

up vote 3 down vote accepted

NSURLRequest and NSURLConnection are what you're looking for. Start with the docs for those.

link|improve this answer
feedback

What's the problem you have with using https? The URL Loading System (i.e. NSURLConnection) and WebKit both support it out-of-the-box. The only issue I know of is with using untrusted certificates, and the only solution I know of to that is (unfortunately) to use a private API call. But you shouldn't be shipping an app that relies on communicating with a server that uses untrusted certificates anyway.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.