iPhone ASIHTTPRequest支持https?

时间:2009-10-23 13:38:00

标签: iphone asihttprequest

ASIHTTPRequest的iPhone图书馆是否支持https协议?

谢谢

3 个答案:

答案 0 :(得分:4)

根据initWithURL的评论:

  

//可能是HTTP或HTTPS网址   包括用户名和密码if   适当

所以,是的,它应该支持HTTPS。虽然我没有尝试过。

答案 1 :(得分:3)

支持HTTPS。我最近一直在广泛使用这些类用于HTTPS。

答案 2 :(得分:1)

是的,实际上,在这种情况下,您必须发送密码和用户名,如下例所示。

NSURL *url = [NSURL URLWithString:@"http://allseeing-i.com/top_secret/"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setUsername:@"username"];
[request setPassword:@"password"];

有关ASIHTTPRequest的更多信息,请参见以下URL:

http://allseeing-i.com/ASIHTTPRequest/How-to-use

编辑:您也可以尝试:

[request setValidatesSecureCertificate:NO]

适用于自签名证书。