14
Permintaan gagal: tipe konten yang tidak dapat diterima: teks / html menggunakan AFNetworking 2.0
Saya mencoba AFNetworking versi 2.0 baru dan saya mendapatkan kesalahan di atas. Tahu mengapa hal ini terjadi? Ini kode saya: 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); } …