gpt4 book ai didi

ios - 如何在使用 NSURLSession 时传递凭据

转载 作者:可可西里 更新时间:2023-11-01 06:09:46 25 4
gpt4 key购买 nike

我正在尝试使用 utorrent webui 登录到我自己的计算机。

目前我正在使用以下代码:

- (void)login
{
NSURL *feedsURL = [NSURL URLWithString:@"http://localhost:12345/"];

NSString *user = @"username";
NSString *password = @"password";
NSURLCredential *defaultCredential = [NSURLCredential credentialWithUser:user password:password persistence:NSURLCredentialPersistencePermanent];

NSString *host = [feedsURL host];
NSInteger port = [[feedsURL port] integerValue];
NSString *protocol = [feedsURL scheme];
NSURLProtectionSpace *protectionSpace = [[NSURLProtectionSpace alloc] initWithHost:host port:port protocol:protocol realm:nil authenticationMethod:NSURLAuthenticationMethodHTTPBasic];

NSURLCredentialStorage *credentials = [NSURLCredentialStorage sharedCredentialStorage];
[credentials setDefaultCredential:defaultCredential forProtectionSpace:protectionSpace];

NSURLSessionConfiguration *config = [NSURLSessionConfiguration defaultSessionConfiguration];
[config setURLCredentialStorage:credentials];

NSURLSession *session = [NSURLSession sessionWithConfiguration:config delegate:nil delegateQueue:nil];
[[session dataTaskWithURL:feedsURL completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (!error) {
NSHTTPURLResponse *httpResp = (NSHTTPURLResponse*) response;
if (httpResp.statusCode == 200) {
NSLog(@"Woo! everything is working");
} else {
NSLog(@"Hrmmm... error %@ occured", error);
}
} else {
NSLog(@"Hrmmm... error %@ occured", error);
}

}] resume];

我可以在使用桌面网络浏览器时正常查看页面,但是,在我的应用程序中,它总是返回 401 错误(未授权)。

我猜这是因为没有使用凭据?如果是这样,正确的使用方法是什么?也没有调用 NSURLSessionDelegate 方法。还有什么我必须做的吗?

最佳答案

HTTP Basic一般会需要一个realm on the protection space;这可能是它失败的地方。使用 curl -v 检查从服务器返回的身份验证质询 header 以找出它是什么。

除此之外,您列出的代码应该可以正常工作 - 我刚刚实现了一些非常相似的东西并且凭证被正确传递。我还遇到过未调用委托(delegate)身份验证质询方法的问题。

关于ios - 如何在使用 NSURLSession 时传递凭据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19784837/

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