我知道 http GET 可能会受到浏览器的限制,但是如果您使用的是 iPhone 怎么办?如果我做这样的事情有什么限制?
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;
}
使用这种方法向我的服务器发送信息 url 中的字符数限制是多少?
我希望能够向我的服务器发送超过24,000 个字符...
如果这是无法实现的,另一种选择是什么?