gpt4 book ai didi

objective-c - 如何获取 HTTP header

转载 作者:太空狗 更新时间:2023-10-30 03:10:08 26 4
gpt4 key购买 nike

如何从 Objective-C 中的 NSURLRequest 检索所有 HTTP header ?

最佳答案

这属于简单但不明显的 iPhone 编程问题。值得快速发布:

HTTP 连接的 header 包含在 NSHTTPURLResponse 类中。如果您有一个 NSHTTPURLResponse 变量,您可以通过发送 allHeaderFields 消息轻松地将 header 作为 NSDictionary 输出。

对于同步请求——不推荐,因为它们会阻塞——很容易填充一个NSHTTPURLResponse:

NSURL *url = [NSURL URLWithString:@"http://www.mobileorchard.com"];
NSURLRequest *request = [NSURLRequest requestWithURL: url];
NSHTTPURLResponse *response;
[NSURLConnection sendSynchronousRequest: request returningResponse: &response error: nil];
if ([response respondsToSelector:@selector(allHeaderFields)]) {
NSDictionary *dictionary = [response allHeaderFields];
NSLog([dictionary description]);
}

对于异步请求,您需要做更多的工作。当回调 connection:didReceiveResponse: 被调用时,它被传递一个 NSURLResponse 作为第二个参数。您可以像这样将其转换为 NSHTTPURLResponse:

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse*)response;
if ([response respondsToSelector:@selector(allHeaderFields)]) {
NSDictionary *dictionary = [httpResponse allHeaderFields];
NSLog([dictionary description]);
}
}

关于objective-c - 如何获取 HTTP header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13236317/

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