Fehler mit AFNetworking für JSON-Parsing

Ich habe den folgenden code für JSON-Parsing:

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://www.dropbox.com/s/qz16qyi3julygl9/facebook.json"]];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {

    NSLog(@"Request Success %@",[JSON class]);

} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
    NSLog(@"Request Failure Because %@",[error userInfo]);
}];

[operation start];

aber ich habe Anfrage Fehler mit der folgenden Fehlermeldung:

NSErrorFailingURLKey = "https://www.dropbox.com/s/qz16qyi3julygl9/facebook.json";
NSLocalizedDescription = "Inhalt-Art {(\n \"text/json\",\n \"application/json\",\n \"text/javascript\"\n")}, got text/html";

kann mir jemand helfen?

Schreibe einen Kommentar