I know that http GET can be limited by the browser but what if you are using an iPhone? What is the limit if I do something like this?
NSString *urlString = [NSString stringWithFormat:@"http://www.hdsjskdjas.com/urlPop.php?vID=%@&pop=%d&tId=%@",videoId,pushPull,[objectSaver openWithKey:@"userId"]];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:urlString]];
NSURLConnection *connect = [[NSURLConnection alloc] initWithRequest:request delegate:self];
if(connect) {
//success;
} else {
//failure;
}
Using this method to send information to my server what would be the limit to the number of characters in the url?
I want to be able to send over 24,000 characters to my sever...
If this is unachievable what would another option be?