I have the following API call:
URL: /api/some-call
Method: PUT
PARAMS: No params
Its just a simple PUT method. I am trying to use AFNetworking to do that and unfortunately, I am failing. Here’s what I have right now:
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];
NSMutableURLRequest *req = [httpClient requestWithMethod:@"PUT" path:@"" parameters:nil];
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:req];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"Success");
} failure: ^(AFHTTPRequestOperation *operatn, NSError *error) {
NSLog(@"Failure");
}];
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[queue addOperation:operation];
This is however, not working. Why is that? Furthermore, what is path supposed to be in a PUT request? I’ve tried several things and this is what I have now at the end, which I believe should be close to what is correct.
One last question: AFNetworking does not use ARC. Does that mean I still need the autorelease at the end of the NSOperationQueue statement?
EDIT:
Here is error NSLog: Failure Error Domain=com.alamofire.networking.error Code=-1011 "Expected status code in (200-299), got 409" UserInfo=0x7a91fb0 {NSErrorFailingURLKey=*the url*/api/some-call, NSLocalizedDescription=Expected status code in (200-299), got 409}
Well. You are getting a 409 error code.
Quoted from http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html :
Which means the error is caused by your server not with your code. unless you have provided some wrong parameters.
Well. As for the question regarding the “what is the path supposed to be in PUT”.
Normally I’ll put baseURL as the domain name of the server.
Which is something like
then i’ll put the path to be something like
then it’s easier to switch between development and production servers with just a switch of a baseURL. 🙂
And for your last question, “AFNetworking does not use ARC. Does that mean I still need the autorelease at the end of the NSOperationQueue statement?”
Does that mean your project is using ARC with AFnetworking, or AFNetworking WITHOUT ARC.
if it’s ARC with AFNetworking, you don’t have to. Take a look at this
https://github.com/AFNetworking/AFNetworking#arc-support
if it’s non-ARC with AFNetworking, you basically have to do all the memory management yourself. 🙂
Hit me up again if you need more info and i’ll edit accordingly. 🙂
Hope i’ve helped in someway.