gpt4 book ai didi

macos - NSURLSessionDataTask 在 macOS 上不起作用, "A server with the specified hostname could not be found."

转载 作者:行者123 更新时间:2023-12-02 19:51:39 25 4
gpt4 key购买 nike

为什么 dataTaskWithURL 在 iOS 上有效,但在 macOS 上无效?

错误信息是:

Client-Error: A server with the specified hostname could not be found.

我的日常安排如下:

- (void)loadHTML {
NSString *urlString = @"https://morph.zone/modules/newbb_plus/viewtopic.php?topic_id=12630&forum=10";
NSURL *url = [NSURL URLWithString:urlString];
NSURLSessionDataTask *downloadTask = [[NSURLSession sharedSession] dataTaskWithURL:url completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error != nil) {
NSLog(@"Client-Error:%@",error.localizedDescription);
}
else {
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
if (httpResponse.statusCode < 200 || httpResponse.statusCode > 299) {
NSLog(@"Server-Error:%ld",httpResponse.statusCode);
}
else {
NSLog(@"Data downloaded");
}
}
}];
[downloadTask resume];
}

最佳答案

对于 macOS 目标,您必须在“功能”选项卡上显式启用“出站连接(客户端)”:

capabilities

在您执行此操作之前,所有出站连接都将失败,并显示 NSURLErrorCannotFindHost错误。

关于macos - NSURLSessionDataTask 在 macOS 上不起作用, "A server with the specified hostname could not be found.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58042612/

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