I'm trying to using AFNetworking after the switch from ASIHTTPRequest.
I would use AFHTTPClient for making request to my api backend server. Currently I make a request (without AFNetworking) for getting the csrf token (I use Django) before every POST request with AFNetworking (I get it from www.example.org/api/csrf). I do this because I need the csrf token for every POST request.
Is there a way to make this task automatically in the AFHTTPClient?
EDIT:
The code for getting the csrf token before every POST request is:
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:kTokenURL]];
NSData *jsonData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
NSDictionary *jsonDict = [jsonString objectFromJSONString];
NSString *csrf_token = [jsonDict objectForKey:@"csrf_token"];
[jsonString release];
NSLog(@"token: %@", csrf_token);