Does the iPhone librarby ASIHTTPRequest supports https protocol?
Thank you
Yes actually, In that case you have to send password and username as shown in the below example.
NSURL *url = [NSURL URLWithString:@"http://allseeing-i.com/top_secret/"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setUsername:@"username"];
[request setPassword:@"password"];
More information on the ASIHTTPRequest is found in the following URL :
http://allseeing-i.com/ASIHTTPRequest/How-to-use
EDIT : You can also try :
[request setValidatesSecureCertificate:NO]
Which works for self signed certificates.