iPhone sdk + HTTPS
How can I send an HTTPS reques开发者_运维技巧t from within my application?
It is probably easiest to use the ASIHTTPRequest
framework.
I think you might have problems if the SSL cert for the https site is self signed.
If it is so, try this as the URL string: https://username:password@host.com/
This will work fine, I my self tried it.
精彩评论