iOS アプリケーションから送信された POST 変数を取得する必要がありますが、今のところうまくいきません。ここにいくつかの背景があります:
私は、変数をファイルに保存し(デバッグ用)、画像を現在のディレクトリ(サーバー側)に移動するだけのphpページに、いくつかの変数とともに画像を投稿するiOSアプリケーションを持っています。$_FILE 変数を使用して問題なく画像のハンドルを取得できますが、POST パラメーターをまったく取得できないようです。
いくつかの一般的な情報と私が試したこと:
- $_POST で投稿変数を取得しようとした後、$_POST をダンプしました...空でした
- $HTTP_RAW_POST_DATA のダンプを試みました (ただし、このページでは、multipart/form-data を使用している場合はデータが取り込まれていないと書かれています)
- この投稿を見た後、「post_max_size」変数を確認しました(8MB、KB範囲で送信しています)
- Wireshark を使用して、変数が実際にサーバーによって受信されていることを確認しました
ここから変更されたサンプルコードを使用しています
// create request
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setCachePolicy:NSURLRequestReloadIgnoringLocalCacheData];
[request setHTTPShouldHandleCookies:NO];
[request setTimeoutInterval:30];
[request setHTTPMethod:@"POST"];
NSMutableDictionary* _params = [[NSMutableDictionary alloc] init];
[_params setObject:@"1.0" forKey:@"ver"];
[_params setObject:@"en" forKey:@"lan"];
[_params setObject:[NSString stringWithFormat:@"%@", @"myUserName"] forKey:@"userId"];
// the boundary string : a random string, that will not repeat in post data, to separate post data fields.
NSString *BoundaryConstant = @"V2ymHFg03ehbqgZCaKO6jy";
// string constant for the post parameter 'file'
NSString *FileParamConstant = @"media";
//Setup request URL
NSURL *requestURL = [[NSURL alloc] initWithString:@"http://myWebAddress/myAction.php"];
// set Content-Type in HTTP header
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@", BoundaryConstant];
[request setValue:contentType forHTTPHeaderField: @"Content-Type"];
// post body
NSMutableData *body = [NSMutableData data];
// add params (all params are strings)
for (NSString *param in _params) {
[body appendData:[[NSString stringWithFormat:@"--%@\r\n", BoundaryConstant] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"\r\n\r\n", param] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"%@\r\n", [_params objectForKey:param]] dataUsingEncoding:NSUTF8StringEncoding]];
}
// add image data
NSData *imageData = UIImageJPEGRepresentation([self.imageButtonOutlet backgroundImageForState:UIControlStateNormal], 1.0);
if (imageData) {
printf("appending image data\n");
[body appendData:[[NSString stringWithFormat:@"--%@\r\n", BoundaryConstant] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\'%@\'; filename=\"image.jpg\"\r\n", FileParamConstant] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[@"Content-Type: image/jpeg\r\n\r\n" dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:imageData];
[body appendData:[[NSString stringWithFormat:@"\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
}
[body appendData:[[NSString stringWithFormat:@"--%@--\r\n", BoundaryConstant] dataUsingEncoding:NSUTF8StringEncoding]];
// setting the body of the post to the reqeust
[request setHTTPBody:body];
// set the content-length
NSString *postLength = [NSString stringWithFormat:@"%d", [body length]];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
// set URL
[request setURL:requestURL];
NSURLConnection *postConnection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
[postConnection start];
[postConnection release];
また、現在の myAction.php は次のとおりです。
<?php
$fp_file = fopen("./output_files.txt", "w");
$fp_post = fopen("./output_post.txt", "w");
$post_content = var_export($_POST , TRUE);
$file_content = var_export($_FILES, TRUE);
fwrite($fp_file, $file_content);
fwrite($fp_post, $post_content);
fclose($fp_file);
fclose($fp_post);
move_uploaded_file( $_FILES['media']['tmp_name'], "test.jpg");
?>