I'm a newbie in obj-c and have been using asihttp for some of my projects. When doing a post request in asihttp its done this way.

    ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
    [request setPostValue:height forKey:@"user[height]"];
    [request setPostValue:weight forKey:@"user[weight]"];
    [request setDelegate:self];
    [request startAsynchronous];

How would go about doing this is AFNetworking with a code example ?
I already got the get Json getrequest working in AFNetworking but this post request is giving me some problems. Thanks for help in advance.

link|improve this question
feedback

3 Answers

up vote 18 down vote accepted

This isn't the only way to do it, but requestWithMethod: is one way to do it:

NSURL *url = [NSURL URLWithString:@"https://mysite.com/"];
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];

NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
                        height, @"user[height]",
                        weight, @"user[weight]",
                        nil];
NSMutableURLRequest *request = [httpClient requestWithMethod:@"POST" path:@"/myobject" parameters:params];

AFHTTPRequestOperation *operation = [AFHTTPRequestOperation operationWithRequest:request
                                     completion:^(NSURLRequest *req, NSHTTPURLResponse *response, NSData *data, NSError *error) {
    BOOL HTTPStatusCodeIsAcceptable = [[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(200, 100)] containsIndex:[response statusCode]];
    if (HTTPStatusCodeIsAcceptable) {
        NSLog(@"Request Successful");
    } else {
        NSLog(@"[Error]: (%@ %@) %@", [request HTTPMethod], [[request URL] relativePath], error);
    }
}];

NSOperationQueue *queue = [[[NSOperationQueue alloc] init] autorelease];
[queue addOperation:operation];
link|improve this answer
Thank you very much Joseph it worked very well. I just had a question after I alloc the httpClient I release it after creating the request, I dont seem to have any crashes and seems to work well. I just wanted to confirm that that is the correct spot to release it. Thank you very much again. Kind Regards – Sam Barnet Oct 2 '11 at 20:13
1  
Yes, that would works. The AFHTTPClient is really intended to be kept around and used again if you make another request, but releasing it straight after the 'requestWithMethod:' call is acceptable. – JosephH Oct 2 '11 at 21:22
Hi Joseph, I finally got it working with a json response and I set up another question stackoverflow.com/questions/7630289/… to really know whether I am doing it right. Thanks so much sorry to bother. – Sam Barnet Oct 3 '11 at 1:05
2  
This code sample makes me want to keep using ASI. – Jason Moore Feb 16 at 14:35
feedback
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
                       height, @"user[height]",
                       weight, @"user[weight]",
                       nil];

AFHTTPClient *client = [[AFHTTPClient alloc] initWithBaseURL:
                                             [NSURL URLWithString:@"http://localhost:8080/"]];

[client postPath:@"/mypage.php" parameters:params success:^(AFHTTPRequestOperation *operation, id responseObject) {
     NSString *text = [[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding];
     NSLog(@"Response: %@", text);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
     NSLog(@"%@", [error localizedDescription]);
}];
link|improve this answer
feedback

I would like to add that the both methods mentioned above (they are basically the same) using query strings, i.e. joining key-value pair with "&". If you need to upload binary data you may need to use [httpClient multipartFormRequestWithMethod] to generate the multipart/form-data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.