I\'m using AFNetworking 2.0 to read JSON from a service I\'m building (on localhost for now) in Node. Pretty normal stuff.
localhost
Node is sending JSON like so
It seems that the server is sending "text/html", and this type is not supported by default. Add @"text/html" for "acceptableContentTypes"
manager.responseSerializer.acceptableContentTypes = [NSSet setWithObject:@"text/html"];