POSTメッセージを機能させようとしています。このようなことを説明している投稿をいくつか見ましたが、まだ機能しません。以下は私の目的のCコードです:
NSString * urlString = @"http://magicthegatheringdatabase.com/test.php";
NSURL *aUrl = [NSURL URLWithString: urlString];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:aUrl
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
NSString *postString = [NSString stringWithFormat:@"tes1=%@&test2=%@",
[@"hello" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
[@"world" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
NSData * postBody = [postString dataUsingEncoding:NSUTF8StringEncoding];
[request setHTTPBody: postBody];
[request addValue:@"application/x-www-form-urlencoded; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
NSString *postLength = [NSString stringWithFormat:@"%d", postBody.length];
[request addValue: postLength forHTTPHeaderField:@"Content-Length"];
[request setHTTPMethod:@"POST"];
NSError * error = nil;
NSData *returnData = [NSURLConnection sendSynchronousRequest: request
returningResponse: nil
error: &error];
NSLog(@"%p, %@", error, error.localizedDescription);
NSString * returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
NSLog(@"Result: %@", returnString);
そして、ここに私のPHPがあります:
<?php
print_r($_REQUEST);
print_r($_POST);
print_r($_GET);
echo file_get_contents( 'php://input' );
?>
コードを実行すると、次のログが記録されます。
2012-12-19 09:24:09.061 MTG Deck Builder[7921:570f] 0x0, (null) 2012-12-19 09:24:09.062 MTG Deck Builder[7921:570f] 結果: 配列 ( ) 配列 ( ) 配列 ( )
URL に直接移動して追加すると?test1=hello&test2=world
(明らかに POST ではなく GET を使用)、次のようになります。
配列 ( [test1] => こんにちは [test2] => 世界 [phpbb3_5e63r_u] => 1 [phpbb3_5e63r_k] => [phpbb3_5e63r_sid] => 7ff37e188aa8e0ab57fae6a52f0d1f7b [__utma] => 86369156.392372889.1349352986.1352901458.1353328580.11 [__utmz] => 86369156.1351935106.8.2.utmcsr=hankinsoft.com|utmccn=(紹介)|utmcmd=referral|utmcct=/website/forum/10-mtg-magic-the-gathering-trading-card-game-tcg- da/634-new-forum.html [style_cookie] => null ) 配列 ( ) 配列 ( [test1] => こんにちは [test2] => 世界 )
したがって、PHP が get/request を適切にログに記録していることはわかっていますが、objective-c コードを介した POST が機能しない理由はわかりません。私は愚かなことを見落としていると確信しています。私が欠けているものについて何か提案はありますか?