web-dev-qa-db-ja.com

NSURLRequestを使用してHTTPリクエストでJSONデータを送信する方法

私はobjective-cを初めて使い、最近ではリクエスト/レスポンスに多大な努力をし始めています。 URLを呼び出し(http GET経由で)、返されたJSONを解析できる実用的な例があります。

これの実例は以下にあります

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    [responseData setLength:0];
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    [responseData appendData:data];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
  NSLog([NSString stringWithFormat:@"Connection failed: %@", [error description]]);
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    [connection release];
  //do something with the json that comes back ... (the fun part)
}

- (void)viewDidLoad
{
  [self searchForStuff:@"iPhone"];
}

-(void)searchForStuff:(NSString *)text
{
  responseData = [[NSMutableData data] retain];
    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.whatever.com/json"]];
    [[NSURLConnection alloc] initWithRequest:request delegate:self];
}

私の最初の質問は-このアプローチは拡大するのでしょうか?または、これは非同期ではありません(アプリが応答を待っている間にUIスレッドをブロックすることを意味します)

2番目の質問は、GETの代わりにPOSTを実行するために、このリクエスト部分をどのように変更すればよいですか? HttpMethodを変更するだけですか?

[request setHTTPMethod:@"POST"];

そして最後に-簡単な文字列としてこの投稿にJSONデータのセットを追加する方法(たとえば)

{
    "magic":{
               "real":true
            },
    "options":{
               "happy":true,
                "joy":true,
                "joy2":true
              },
    "key":"123"
}

前もって感謝します

78
Toran Billups

私が行うことは次のとおりです(サーバーに送信するJSONは、key = question..i.e。{:question => {dictionary}}の1つの値を持つ辞書(別の辞書)である必要があります)。

NSArray *objects = [NSArray arrayWithObjects:[[NSUserDefaults standardUserDefaults]valueForKey:@"StoreNickName"],
  [[UIDevice currentDevice] uniqueIdentifier], [dict objectForKey:@"user_question"],     nil];
NSArray *keys = [NSArray arrayWithObjects:@"nick_name", @"UDID", @"user_question", nil];
NSDictionary *questionDict = [NSDictionary dictionaryWithObjects:objects forKeys:keys];

NSDictionary *jsonDict = [NSDictionary dictionaryWithObject:questionDict forKey:@"question"];

NSString *jsonRequest = [jsonDict JSONRepresentation];

NSLog(@"jsonRequest is %@", jsonRequest);

NSURL *url = [NSURL URLWithString:@"https://xxxxxxx.com/questions"];

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url
             cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];


NSData *requestData = [jsonRequest dataUsingEncoding:NSUTF8StringEncoding];

[request setHTTPMethod:@"POST"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setValue:[NSString stringWithFormat:@"%d", [requestData length]] forHTTPHeaderField:@"Content-Length"];
[request setHTTPBody: requestData];

NSURLConnection *connection = [[NSURLConnection alloc]initWithRequest:request delegate:self];
if (connection) {
 receivedData = [[NSMutableData data] retain];
}

次いで、receivedDataは以下によって処理されます。

NSString *jsonString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSDictionary *jsonDict = [jsonString JSONValue];
NSDictionary *question = [jsonDict objectForKey:@"question"];

これは100%明確ではないので、読み直す必要がありますが、開始するにはすべてが揃っている必要があります。そして、私が言えることから、これは非同期です。これらの呼び出しが行われている間、私のUIはロックされません。お役に立てば幸いです。

104
Mike G

私はこれにしばらく苦労しました。サーバーでPHPを実行しています。このコードはjsonを投稿し、サーバーからjson応答を取得します

NSURL *url = [NSURL URLWithString:@"http://example.co/index.php"];
NSMutableURLRequest *rq = [NSMutableURLRequest requestWithURL:url];
[rq setHTTPMethod:@"POST"];
NSString *post = [NSString stringWithFormat:@"command1=c1&command2=c2"];
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding];
[rq setHTTPBody:postData];
[rq setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
NSOperationQueue *queue = [[NSOperationQueue alloc] init];

[NSURLConnection sendAsynchronousRequest:rq queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error)
 {
     if ([data length] > 0 && error == nil){
         NSError *parseError = nil;
         NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data options:0 error:&parseError];
         NSLog(@"Server Response (we want to see a 200 return code) %@",response);
         NSLog(@"dictionary %@",dictionary);
     }
     else if ([data length] == 0 && error == nil){
         NSLog(@"no data returned");
         //no data, but tried
     }
     else if (error != nil)
     {
         NSLog(@"there was a download error");
         //couldn't download

     }
 }];
7
user3344717

ASIHTTPRequest を使用することをお勧めします

ASIHTTPRequestは、CFNetwork APIの使いやすいラッパーであり、Webサーバーとの通信のより退屈な側面を簡単にします。 Objective-Cで記述されており、Mac OS XとiPhoneの両方のアプリケーションで動作します。

基本的なHTTPリクエストを実行し、RESTベースのサービス(GET/POST/PUT/DELETE)と対話するのに適しています。含まれているASIFormDataRequestサブクラスにより、multipart/form-dataを使用してPOSTデータおよびファイルを簡単に送信できます。


元の作者がこのプロジェクトを中止したことに注意してください。理由と代替策については、次の投稿を参照してください。 http://allseeing-i.com/%5Brequest_release%5D ;

個人的には AFNetworking の大ファンです

6
vikingosegundo

ほとんどの人はすでにこれを知っていますが、念のため、iOS6 +でJSONに苦労している人もいます。

IOS6以降では、 NSJSONSerialization Class があります。これは高速で、「外部」ライブラリを含めることに依存しません。

NSDictionary *result = [NSJSONSerialization JSONObjectWithData:[resultStr dataUsingEncoding:NSUTF8StringEncoding] options:0 error:nil]; 

これは、iOS6以降でJSONを効率的に解析できるようにする方法です。SBJsonの使用もARCより前の実装であり、ARC環境で作業している場合にもこれらの問題をもたらします。

これがお役に立てば幸いです!

3
tony.stack

Mike Gの回答を編集してコードを近代化したため、コードは3対2で拒否されました。

この編集は、投稿の著者に対応することを目的としており、編集としては意味がありません。コメントまたは回答として書かれている必要があります

ここで、編集内容を別の回答として再投稿しています。この編集により、JSONRepresentation依存関係がNSJSONSerializationで削除されます。Robの15の賛成票のコメントが示唆するとおりです。

    NSArray *objects = [NSArray arrayWithObjects:[[NSUserDefaults standardUserDefaults]valueForKey:@"StoreNickName"],
      [[UIDevice currentDevice] uniqueIdentifier], [dict objectForKey:@"user_question"],     nil];
    NSArray *keys = [NSArray arrayWithObjects:@"nick_name", @"UDID", @"user_question", nil];
    NSDictionary *questionDict = [NSDictionary dictionaryWithObjects:objects forKeys:keys];

    NSDictionary *jsonDict = [NSDictionary dictionaryWithObject:questionDict forKey:@"question"];

    NSLog(@"jsonRequest is %@", jsonRequest);

    NSURL *url = [NSURL URLWithString:@"https://xxxxxxx.com/questions"];

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url
                 cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];


    NSData *requestData = [NSJSONSerialization dataWithJSONObject:dict options:0 error:nil]; //TODO handle error

    [request setHTTPMethod:@"POST"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    [request setValue:[NSString stringWithFormat:@"%d", [requestData length]] forHTTPHeaderField:@"Content-Length"];
    [request setHTTPBody: requestData];

    NSURLConnection *connection = [[NSURLConnection alloc]initWithRequest:request delegate:self];
    if (connection) {
     receivedData = [[NSMutableData data] retain];
    }

次いで、receivedDataは以下によって処理されます。

NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
    NSDictionary *question = [jsonDict objectForKey:@"question"];
2
Steve Moser

Restkit を使用したすばらしい記事があります

ネストされたデータをJSONにシリアル化し、データをHTTP POSTリクエストに添付する方法について説明します。

2
cevaris

NSURLConnection + sendAsynchronousRequestを使用している更新された例は次のとおりです。

NSURL *apiURL = [NSURL URLWithString:
    [NSString stringWithFormat:@"http://www.myserver.com/api/api.php?request=%@", @"someRequest"]];
NSURLRequest *request = [NSURLRequest requestWithURL:apiURL]; // this is using GET, for POST examples see the other answers here on this page
[NSURLConnection sendAsynchronousRequest:request
                                   queue:[NSOperationQueue mainQueue]
                       completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
     if(data.length) {
         NSString *responseString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
         if(responseString && responseString.length) {
             NSLog(@"%@", responseString);
         }
     }
}];
0
auco

JSONコードを送信するためにこのコードを試すことができます

NSData *jsonData = [NSJSONSerialization dataWithJSONObject:ARRAY_CONTAIN_JSON_STRING options:NSJSONWritin*emphasized text*gPrettyPrinted error:NULL];
NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
NSString *WS_test = [NSString stringWithFormat:@"www.test.com?xyz.php&param=%@",jsonString];
0
jayesh mardiya