14
İstek başarısız oldu: kabul edilemez içerik türü: AFNetworking 2.0 kullanarak metin / html
AFNetworking'in yeni 2.0 sürümünü deniyorum ve yukarıdaki hatayı alıyorum. Bunun neden olduğu hakkında bir fikrin var mı? İşte benim kod: NSURL *URL = [NSURL URLWithString:kJSONlink]; NSURLRequest *request = [NSURLRequest requestWithURL:URL]; AFHTTPRequestOperation *op = [[AFHTTPRequestOperation alloc] initWithRequest:request]; op.responseSerializer = [AFJSONResponseSerializer serializer]; [op setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) { NSLog(@"JSON: %@", responseObject); } …