I'm new in internet connection for iOS. I'm trying to get data from special site.
The following codes works great with all site to see the data in the url.
However if I change it the special site to get their data it return NULL!!
I think the site some how block this type of implementation. Because the site present some XML information.
NSString *URLString = @"http://www.specialsite.com/";
NSURL *postURL = [NSURL URLWithString:URLString];
NSURLRequest *postRequest = [NSURLRequest requestWithURL:postURL];
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]);
}
Also the response in console is:
2011-12-26 12:24:37.245 Arz[6113:207] Response was (null)
Remember if I change:
NSString *URLString = @"http://www.specialsite.com/";
to
NSString *URLString = @"http://www.apple.com/";
working prefect!
Sorry I can't say the name of the site in here (public).