I'm learning to use AFNetworking.

I know I can use AFHTTPClient for making a POST request with json.

My question is: is there a way to make a standard POST request? My server backend doesn't accept json, because the client should use the same form for login via web.

In past I used ASIHTTPRequest and I used this code:

url = [NSURL URLWithString:@"www.example.org/login/"];
request = [ASIFormDataRequest requestWithURL:url];
[request setPostValue:self.username forKey:@"username"];
[request setPostValue:self.password forKey:@"password"];
[request startAsynchronous];

Thanks!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I've solved with [httpClient setParameterEncoding:AFFormURLParameterEncoding];

Reference: http://stackoverflow.com/a/8491782/719127

link|improve this answer
feedback

Just create a NSMutableURLRequest object and modify the HTTP-headers and body as per Apple documentation. This request object can then be used with the AFNetworking library.

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.