gpt4 book ai didi

objective-c - 仅下载 Cocoa 中的 HTTP header

转载 作者:行者123 更新时间:2023-12-03 17:55:36 27 4
gpt4 key购买 nike

我正在尝试将我的 Android 应用程序之一移植到 Mac OS X 上本地运行。

对于应用程序的初始化,它需要连接到服务器并仅读取服务器响应的 header 。服务器(第 3 方服务器)将响应 82274 字节的数据,但对我来说唯一有用的数据是 header ;具体来说,我需要读取 session cookie并检索其值。这意味着所有其他数据都是冗余的。

通过谷歌搜索,唯一有效的响应如下:

// Create the request.
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://www.grooveshark.com/"]];
[theRequest setHTTPMethod:@"HEAD"];
[theRequest setValue:@"MySpecialUserAgent/1.0" forHTTPHeaderField:@"User-Agent"];
[theRequest setTimeoutInterval:15.0];
[theRequest setCachePolicy:NSURLRequestReloadIgnoringCacheData];

但是这仍然会下载整个页面。

有人能指出我正确的方向吗?

最佳答案

让我们看看如果我们点击该 URL 会发生什么。

› curl -v -X HEAD http://www.grooveshark.com
* About to connect() to www.grooveshark.com port 80 (#0)
* Trying 8.20.213.76...
* connected
* Connected to www.grooveshark.com (8.20.213.76) port 80 (#0)
> HEAD / HTTP/1.1
> User-Agent: curl/7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 OpenSSL/0.9.8r zlib/1.2.5
> Host: www.grooveshark.com
> Accept: */*
>
< HTTP/1.1 301 Moved Permanently
< Server: richhickey
< Date: Sat, 15 Dec 2012 20:27:38 GMT
< Content-Type: text/html; charset=UTF-8
< Connection: close
< Location: http://grooveshark.com
< Vary: Accept-Encoding
< X-Hostname: rhl081
< X-Hostname: rhl081
<
* Closing connection #0

所以www.grooveshark.com重定向至grooveshark.com 。让我们看看该页面是否符合 HEAD请求正确。

› curl -v -X HEAD http://grooveshark.com    
* About to connect() to grooveshark.com port 80 (#0)
* Trying 8.20.213.76...
* connected
* Connected to grooveshark.com (8.20.213.76) port 80 (#0)
> HEAD / HTTP/1.1
> User-Agent: curl/7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 OpenSSL/0.9.8r zlib/1.2.5
> Host: grooveshark.com
> Accept: */*
>
< HTTP/1.1 200 OK
< Server: richhickey
< Date: Sat, 15 Dec 2012 20:28:06 GMT
< Content-Type: text/html; charset=UTF-8
< Connection: close
< Vary: Accept-Encoding
< Set-Cookie: PHPSESSID=844a5e6bdd6d84a97afd8f42faf4eb95; expires=Sat, 22-Dec-2012 20:28:06 GMT; path=/; domain=.grooveshark.com
< Expires: Thu, 19 Nov 1981 08:52:00 GMT
< Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
< Pragma: no-cache
< Vary: Accept-Encoding
< X-Hostname: rhl061
< Set-Cookie: ismobile=no;domain=.grooveshark.com;path=/
< X-country: US
<
* Closing connection #0

看起来不错。我怀疑您的请求在遵循该重定向时会回退到 GET。看起来 Chris Suter 遇到了同样的事情并给出了一个示例解决方案:http://sutes.co.uk/2009/12/nsurlconnection-using-head-met.html

将来您可能想要尝试通过本地代理运行您的请求,以便您可以在运行中看到它们。这可能会表明您制作了 HEAD请求www.grooveshark.com随后是 GETgrooveshark.com .

关于objective-c - 仅下载 Cocoa 中的 HTTP header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13895740/

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