追加データを含む画像を投稿しようとしています。
IOSコード:
NSMutableDictionary *params = [NSMutableDictionary dictionary];
[params setValue:userID forKey:@"userid"];
[params setValue:sessionID forKey:@"sessionid"];
CWNetworkOperation *operation = [self operationWithURL:url httpMethod:@"POST" params:params];
NSData *imageData = UIImageJPEGRepresentation(image, 0.8f);
[operation setData:imageData forKey:@"photo" mimeType:@"image/jpeg" fileName:@"image.jpg"];
useridとsessionidをorg.apache.http.NameValuePairとして追加できます
org.apache.http.client.methods.HttpPostに追加しますが、base64文字列イメージのバイト配列値にエンコードされた「写真」キーを追加しても肯定的な結果は得られません。
スニファ画面:
Javaで同じものを作る方法は?