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


80

私はObjective-cを初めて使用し、最近、要求/応答に多大な努力を払い始めています。(http GETを介して)URLを呼び出し、返された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"
}

前もって感謝します


1
チュートリアルは次のとおり
Josh

回答:


105

これが私がすることです(私のサーバーに行くJSONはkey = question..ie {: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がロックされません。お役に立てば幸いです。


この行[dictobjectForKey:@ "user_question"]、nil]を除いて、すべてが良さそうです。--dictはサンプルで宣言されていません。これは単なる辞書ですか、それとも特別なものですか?
Toran Billups 2010

1
申し訳ありません。はい、「dict」はiOSユーザーのドキュメントからロードする単純な辞書です。
マイクG

19
これはNSDictionaryインスタンスメソッドを使用していますJSONRepresentationjson-frameworkの代わりにNSJSONSerializationclassメソッドを使用することをお勧めします。dataWithJSONObject
ロブ

のようなNSNumberを使用してNSUIntegerをNSStringに変換する方が効率的[[NSNumber numberWithUnsignedInt:requestData.length] stringValue]です。
respectTheCode

1
@MikeGコードサンプルの長年の、これまで気づかなかったバグを修正しました。投稿を編集して申し訳ありません;)
CouchDeveloper 2013

7

私はしばらくこれに苦労しました。サーバー上で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

     }
 }];

1
content type = "application / x-www-form-urlencoded"がうまくいきました。ありがとう
SamChen 2015

いい答えだ。私の場合は「application / json」を使用しました
Gajendra K Chauhan 2017年

6

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

ASIHTTPRequestは、CFNetwork APIの使いやすいラッパーであり、Webサーバーとの通信の面倒な側面のいくつかを容易にします。これはObjective-Cで記述されており、Mac OSXとiPhoneの両方のアプリケーションで動作します。

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


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

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


3

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

iOS6以降では、高速で「外部」ライブラリを含めることに依存しないNSJSONSerializationクラスがあります。

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

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

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


2

これはRestkitを使用した素晴らしい記事です

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


2

コードを最新化するためのMikeGの回答に対する私の編集は、3対2で拒否されたため

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

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

    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"];

0

NSURLConnection + sendAsynchronousRequestを使用している更新された例を次に示します:(10.7 +、iOS 5 +)、「Post」リクエストは受け入れられた回答と同じままであり、わかりやすくするためにここでは省略されています。

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);
         }
     }
}];

質問はPOSTについてでした
ahmad 2014年

2
いいえ、質問の最初の部分は非同期性に関するものであり、それに答える答えはここにはありません。反対票に乾杯。
auco 2014年

0

このコードを送信して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];
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.