I am making post request form my application to server for login. I want to know is it safe? Is the data can be traced? For making a post request I am suing the following code:
NSURL *s =[self getAbsoluteURL:url];
NSMutableURLRequest *requestURL = [NSMutableURLRequest requestWithURL:s cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:10.00];
[requestURL setHTTPMethod:@"POST"];
[requestURL setHTTPBody:[parameter dataUsingEncoding:NSUTF8StringEncoding]];
NSHTTPURLResponse *response;
NSError *error;
NSData *apiData = [NSURLConnection sendSynchronousRequest:requestURL returningResponse:&response error:&error];
I want to know how secure is my process.