0

Androidアプリケーションの1つを移植して、MacOSXでネイティブに動作させようとしています。

アプリケーションを初期化するには、サーバーに接続し、サーバーの応答のヘッダーのみを読み取る必要があります。サーバー(サードパーティサーバー)は82274バイトのデータで応答しますが、私にとって有用なデータはヘッダーだけです。具体的には、セッション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];

ただし、これでもページ全体がダウンロードされます。

誰かが私を正しい方向に向けることができますか?

4

1 に答える 1

1

その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

将来的には、ローカルプロキシを介してリクエストを実行して、実行中のリクエストを確認できるようにすることをお勧めします。それはおそらくあなたがtoの後にHEADtoを続けるように要求したことを明らかにするでしょう。www.grooveshark.comGETgrooveshark.com

于 2012-12-15T20:35:24.833 に答える