2

I request a JSON response from a home controlling device:

NSData* responseData = [NSData dataWithContentsOfURL:url];

The JSON data in responseData is complete and valid. However, if I try

NSDictionary* dict = [NSJSONSerialization 
                          JSONObjectWithData:responseData                          
                          options:kNilOptions 
                          error:&error];
NSLog("Error: %@", error);

it gives me the following error:

Error: Error Domain=NSCocoaErrorDomain Code=3840 "The operation couldn’t be completed. (Cocoa error 3840.)" (Duplicate key for object around character 0.) UserInfo=0x6a8b8e0 {NSDebugDescription=Duplicate key for object around character 0.}

I searched the web but couldn't find anything helpful so far.


Edit: The JSON response it quite long, so instead of posting it here, please find it here.

Norbert
  • 4,239
  • 7
  • 37
  • 59

3 Answers3

0

I get the same error, only at random when the app runs. When the NSJSONSerialization fails I've checked the json object it chocks on using a JSON Viewer. The JSON is always OK. Bugs in NSJSONSerialization when it's called several times?

Kai Friis
  • 75
  • 1
  • 7
0

I got the same error. My JSON data passed JSON validator at http://jsonformatter.curiousconcept.com/ . However, I found two duplicated keys in my JSON (at the end of dictionary). After I removed those keys, NSJSONSerialization works smoothly.

Hai Feng Kao
  • 5,219
  • 2
  • 27
  • 38
  • JSON doesn't define how duplicate keys should be handled. Anything putting JSON into NSDictionary cannot possibly handle them in a meaningful way. – gnasher729 Apr 15 '14 at 08:18
0

It looks like the JSON is fine by pasting it into http://jsonformat.com/ - maybe you found an Apple bug? Another way to try and validate would be to use a third-party iOS library and see if it gives you the same error? Say, TouchJSON?

Scott Corscadden
  • 2,831
  • 1
  • 25
  • 43