gpt4 book ai didi

ios - 我们可以在 iPhone 上以编程方式通过 SSL 实现 HTTP 摘要代理吗?

转载 作者:太空宇宙 更新时间:2023-11-03 14:56:36 24 4
gpt4 key购买 nike

我正在尝试通过 SSL 为我的一位客户实现 Http 摘要身份验证。我找不到与此相关的任何引用。这可以实现吗?

谢谢

最佳答案

经过多次研究,我发现,除了 SOCKS 之外,iOS 不提供任何此类对基于 SSL 的 Http 身份验证的内置支持。但是,如果您迫切希望实现它,请创建一个套接字并执行 Digest/NTLM/...握手并使用相同的套接字来创建输入/输出流。截至目前,这是唯一的方法。

但是,对于常规的 Http 请求,例如 POST/GET/...,您可以使用 NSURLConnection 类作为以下代码来验证服务器。

- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
NSLog(@"InShiva didReceiveAuthenticationChallenge") ;
if ([challenge previousFailureCount] == 0)
{
NSLog(@"received authentication challenge");
NSURLCredential *newCredential = [NSURLCredential credentialWithUser:@"username"
password:@"password"
persistence:NSURLCredentialPersistenceForSession];
NSLog(@"credential created");
[[challenge sender] useCredential:newCredential forAuthenticationChallenge:challenge];
NSLog(@"responded to authentication challenge");
}
else
{
NSLog(@"previous authentication failure");
}
}

关于ios - 我们可以在 iPhone 上以编程方式通过 SSL 实现 HTTP 摘要代理吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28595729/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com