I recently started using AfNetworking in my projects. I created an AFClient, implement all the parameter and everything is in order to GET methods. However, I am not able to make a POST method: There is my code:
NSDictionary *params = [[NSDictionary alloc]initWithObjectsAndKeys:
@"TexttoInsert", @"question",
id,@"user_id",
nr1,@"number1",
nr2, @"number2",
nil];
[[MYClient sharedInstance] postPath:@"insert" parameters:params success:^(AFHTTPRequestOperation *operation, id JSON) {
NSLog(@"%@", JSON);
}
failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"RequestOperation:%@",operation);
NSLog(@"Error:%@",error);
}];
I get this error, and am not able to solve it.
Error Domain=AFNetworkingErrorDomain Code=-1011 "Expected status code in (200-299), got 400" UserInfo=0x6cb6330 {NSLocalizedRecoverySuggestion={"success":false,"error":400,"message":"Bad Request"},
AFNetworkingOperationFailingURLResponseErrorKey=<NSHTTPURLResponse: 0x6a893e0>, NSErrorFailingURLKey=http://myMainUrl/insert, NSLocalizedDescription=Expected status code in (200-299), got 400, AFNetworkingOperationFailingURLRequestErrorKey=<NSMutableURLRequest http://myMainUrl/insert>}
AFNetworking, as the error states the responds with an errorBad Requestwhich normally means that you are not meting the requirments for the request. – rckoenes Oct 11 '12 at 10:59