我正在使用 HTTPS 访问表单登录页面。通过拦截时
- (void)connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge`
并通过以下方式提取使用的身份验证方法
NSString *authenticationMethod = [[challenge protectionSpace] authenticationMethod];
我得到以下
NSURLAuthenticationMethodServerTrust
但预期的结果应该是
NSURLAuthenticationMethodHTMLForm
这是由于使用 HTTPS 造成的吗?