I'm newbie in iOS app with internet connection.
I would with my implement try to login to a bank site.
With the following codes I done it and with NSLog should I'm looking to current page and the information of my account fully load without any problem.
The bank site has special feature. For example when I'm login to their website and after login if I close the window (for example in Safari) the application again request me for authorization.
So with my code I have same problem, the first page is fine, however when I would and new connection, it back to first place and I'm getting error because the site redirect me to authorization page.
NSMutableDictionary *params = [NSMutableDictionary dictionary];
[params setObject:@"ali" forKey:@"userId"];
[params setObject:@"12345" forKey:@"password"];
NSString *URLString = @"https://something.com/hLogin.bm";
NSURL *postURL = [NSURL URLWithString:URLString];
NSURLRequest *postRequest = [PRPFormEncodedPOSTRequest requestWithURL:postURL
formParameters:params];
NSURLResponse *response = nil;
NSError *error = nil;
NSData *responseData = [NSURLConnection sendSynchronousRequest:postRequest
returningResponse:&response
error:&error];
if (responseData) {
NSLog(@"Response was %@", [NSString stringWithCString:[responseData bytes] encoding:NSUTF8StringEncoding]);
} else {
NSLog(@"Error posting to %@ (%@)", URLString, error);
}
When above code I able to login to the site, but now I would browse https://something.com/account.bm Unforgettably the site fill I'm not authorize. I would still be authorize for example for 1 hour.
Sorry about my bad explanation.
stringWithCString:encoding:is likely to crash. There is no guarantee that the server will always return a C string, and NSURLConnection certainly won't make it one for you. Use-[NSString initWithData:encoding:]instead. – Peter Hosey Dec 17 '11 at 23:23NSLogstatement in release builds, (1) you may do so by accidentally forgetting to take it out, and (2) it is worth learning not to make that mistake before you make it again and it then causes a real problem. – Peter Hosey Dec 18 '11 at 5:47