Currently, i am working on a project. I am uploading an image with parameters using afnetwork. It's working fine on wifi but if I use cellular network. it's not passing parameters correctly. Like few times back end server receiving parameters. Sometimes missing. The code i am using is
NSString *URLString = [NSString stringWithFormat:@"%@%@",BASEURL,urlID]; // some URL
NSLog(@"URL : %@ Parameters %@",URLString,postVars);
AFHTTPSessionManager *uploadManager = [AFHTTPSessionManager manager];
[uploadManager POST:URLString parameters:postVars constructingBodyWithBlock:^(id<AFMultipartFormData> _Nonnull formData) {
NSLog(@"Parameters %@",postVars);
if (profileImageData) {
[formData appendPartWithFileData:profileImageData name:@"photo" fileName:@"myimage.jpg" mimeType:@"image/jpeg"];
}
} progress:nil success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
NSLog(@"Success %@", responseObject);
if ([[responseObject valueForKey:@"status"]isEqualToString:@"success"]) {
block(responseObject,nil);
}
else{
block(responseObject,nil);
}
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
if([[error.userInfo objectForKey:@"NSLocalizedDescription"] isEqualToString:AFNETWORK_OFFLINE_MESSAGE])
{
[alertHelper showAlertwithTitle:NOINTERNET_TITLE details:NOINTERNET_DETAILS];
}
block(nil,error);
}];
Uploading image with parameters working on wifi but on cellular network sometimes paramenters missing on AFNetwork. My Backend Developer informed me that you are not sending parameters on the time of uploading image. What should i do right now.
Try this
if your parameter is nil then paas nil instead of _params.