Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Check out NSURLConnection docs on the apple site: <a href="http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSURLConnection_Class/Reference/Reference.html" rel="nofollow noreferrer">NSURLConnection</a></p> <p>EDIT: added more info.</p> <p>You need to set up authentication. A quick search of SO produced these results: <a href="https://stackoverflow.com/questions/2997673/nsurlconnection-ssl-http-basic-auth">NSURLConnection SSL HTTP Basic Auth</a> and <a href="https://stackoverflow.com/questions/1578121/https-with-nsurlconnection-nsurlerrorservercertificateuntrusted">HTTPS with NSURLConnection - NSURLErrorServerCertificateUntrusted</a></p> <p>You need to set up your server to handle authentication, then issue a challenge to the device. As you can see in the above posts, there is a function: didReceiveAuthenticationChallenge: You need to use this to handle authentication challenges. You can get a good idea of how to go about it using the above posts.</p> <p>Your server needs to be set up to handle authentication, as well. I don't know what language you use with your server, but as I use PHP, here is the PHP manual link on authentication: <a href="http://php.net/manual/en/features.http-auth.php" rel="nofollow noreferrer">PHP authentication</a></p> <p>It is a tricky thing to do at first, but once you get into it isn't bad (and creating more https connections comes easily). However, writing out everything you would need to do here is a bit much. If you scope out those posts, you can get a general idea about how to go about it. It'll take some working to get it done.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload