JSONの解析で問題に直面しているflickrパブリックAPIを使用しています。これが私のコードです。
NSString *urlString = @"https://api.flickr.com/services/feeds/photos_public.gne?format=json";
NSURL *url = [NSURL URLWithString:urlString];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
// operation.responseSerializer = [AFJSONResponseSerializer serializer];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
//(JSON text did not start with array or object and option to allow fragments not set.)
NSString *rawString = [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
NSData *refinedData = [responseObject subdataWithRange:NSMakeRange([@"jsonFlickrFeed(" length], [responseObject length]-([@"jsonFlickrFeed(" length]+1))];
NSError *parseError = nil;
NSDictionary *jsonObject=[NSJSONSerialization
JSONObjectWithData:refinedData
options:NSJSONReadingMutableLeaves
error:&parseError];
NSError *parsingError = nil;
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
}];
[operation start];
解析中のエラー:
Error Domain=NSCocoaErrorDomain Code=3840 "The data couldn’t be read because it isn’t in the correct format." (Invalid escape sequence around character 15901.) UserInfo=0x7fa613da71c0 {NSDebugDescription=Invalid escape sequence around character 15901.}
解析中に指定する必要がある特定の文字セットはありますか?
API の応答は私の制御下にないため、必要な変更を最後に行う必要があります。
解決策:@vishnuvaranの推測は論理的に正しいです。それとは別に、この文字「\」をエスケープする必要がある場合、JSONを解析できるのは私だけです。
[requiredString replaceOccurrencesOfString:@"\\\'" withString:@" " options:NSLiteralSearch range:NSMakeRange(0, [requiredString length])];