NSURLSessionリクエストHTTP/2.0iOS10 NSURLSession HTTP/2無効
iOS9で動作します。 iOS10
で
が、無効な私のコード:
NSURLSession *session = [NSURLSession sharedSession];
request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"https://ga.seeyouyima.com/page"]];
[request setHTTPMethod:@"POST"];
[[session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (completedBlock) {
completedBlock(data, response, error);
}
}] resume];
コードは必須です。 –
証明書の設定に問題がある可能性があります。私は似ている[問題](http://stackoverflow.com/q/39544547/3871718)。 – new2ios
サーバー証明書はTLSv1.2を使用します。 –