I am sending data from my iPhone to server. Code is following:
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:url]];
[request setShouldCompressRequestBody:YES]; // gzip compression
[request setTimeOutSeconds:60];
[request setPostValue:emailString forKey:@"email"];
[request setPostValue:jsonStr forKey:@"jsonstring"];
[request setPostValue:pwd forKey:@"password"];
[request setDelegate:self];
[request startAsynchronous];
I tried to search that how can i receive this data in my server but couldn't find any help. Will i receive it using req.getParameter(). If yes then what will be the parameter name and then how to unzip it and use email, jsonstring, password parameters. Thanks in advance.