web-dev-qa-db-ja.com

Jsonを使用してObjective Cにデータを投稿する

PHP Webサービスにデータを投稿しようとしています。

私はついに次のコードを思いつきました:

NSString *jsonRequest = [NSString stringWithFormat:@"{\"Email\":\"%@\",\"FirstName\":\"%@\"}",user,fname];
NSLog(@"Request: %@", jsonRequest);

NSURL *url = [NSURL URLWithString:@"http:myurl..."];

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url];
NSData *requestData = [NSData dataWithBytes:[jsonRequest UTF8String] length:[jsonRequest length]];

[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 connectionWithRequest:request delegate:self];

私も試しました:
NSURLConnection * connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];

私のWebサービスは投稿時に新しいユーザーを作成し、userIDを返します。両方ともWebサービス呼び出しを正常に行います(新しいユーザーIDが作成されます)が、データをポストしません。つまり、毎回空のユーザーが作成されます。
何か不足している場合は教えてください。

ありがとう。

私の他の試み:

NSMutableURLRequest *request = 
[[NSMutableURLRequest alloc] initWithURL:
 [NSURL URLWithString:@"myUrl.. "]];

[request setHTTPMethod:@"POST"];

NSString *postString = @"[email protected]&FirstName=Test";

[request setValue:[NSString 
                   stringWithFormat:@"%d", [postString length]] 
forHTTPHeaderField:@"Content-length"];

[request setHTTPBody:[postString 
                      dataUsingEncoding:NSUTF8StringEncoding]];

[[NSURLConnection alloc] 
 initWithRequest:request delegate:self];

私はついに問題を解決しました:最後に、何が間違っていたかを見つけました。 http:// mypath?params = 12 をURLとして使用していました。完全なURLをギグしませんでした(他の言語では必要ありませんでした)。しかし、ここではhtt://mypath/index.php?params = 123を指定する必要がありました

28
Praneeta

NSJSONSerializationクラスは次のように使用した方が良いと思います。

NSDictionary *tmp = [[NSDictionary alloc] initWithObjectsAndKeys:
                     email, @"Email",
                     fname, @"FirstName",
                     nil];
NSError *error;
NSData *postdata = [NSJSONSerialization dataWithJSONObject:tmp options:0 error:&error];
[request setHTTPBody:postData];

辞書を使用してからJSONに変換すると、文字列のように作成するよりも簡単です。

がんばろう!

[Swift 3.](更新)

let tmp = ["email": email,
           "FirstName": fname]
let postData = try? JSONSerialization.data(withJSONObject: tmp, options: .prettyPrinted)
request.httpBody = postData
40
Zalykr

私はあなたのコードを実行しました、そして、サーバー側はすべてのメッセージを受け取ります。

POST / HTTP/1.1
Host: linux-test
User-Agent: demoTest/1.0 CFNetwork/548.1.4 Darwin/11.3.0
Content-Length: 44
Accept: application/json
Content-Type: application/json
Accept-Language: en
Accept-Encoding: gzip, deflate
Connection: keep-alive

{"Email":"[email protected]","FirstName":"test"}

jsonRequestに非ASCII文字が含まれている場合、[jsonRequest length]は間違っています。

NSData *requestData = [NSData dataWithBytes:[jsonRequest UTF8String] length:[jsonRequest length]];

代わりにstrlenを使用できます。

NSData *requestData = [NSData dataWithBytes:[jsonRequest UTF8String] length:strlen([jsonRequest UTF8String])];

または

[jsonRequest dataUsingEncoding:NSUTF8StringEncoding];
3
xda1001
NSURL *url=[NSURL URLWithString:[NSString stringWithFormat:@"%@posts", SeverURL]];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setRequestMethod:@"POST"];
[request addRequestHeader:@"content-type" value:@"application/json"];
[request addRequestHeader:@"User-Agent" value:@"iOS"];

request.allowCompressedResponse = NO;
request.useCookiePersistence = NO;
request.shouldCompressRequestBody = NO;
request.delegate=self;
NSString *json=[[self prepareData] JSONRepresentation];//SBJSON lib, convert a dict to json string
[request appendPostData:[NSMutableData dataWithData:[json dataUsingEncoding:NSUTF8StringEncoding]]];

[request startSynchronous];
0
Cullen SUN

これを試して

NSData *requestData = [jsonRequest dataUsingEncoding:NSUTF8StringEncoding];
0