0

我向 Instapaper API 发出请求,它应该返回 JSON。它返回的内容接近 JSON,但不完全,如下所示:

2013-05-30 19:54:20.155 --[53078:c07] (
        {
        type = meta;
    },
        {
        "subscription_is_active" = 1;
        type = user;
        "user_id" = --;
        username = "--@gmail.com";
    },
        {
        "bookmark_id" = 387838931;
        description = "";
        hash = YHwQuwhW;
        "private_source" = "";
        progress = 0;
        "progress_timestamp" = 0;
        starred = 0;
        time = 1369954406;
        title = "Adobe Finally Releases Kuler Color-Picking App for iPhone - Mac Rumors";
        type = bookmark;
        url = "http://www.macrumors.com/2013/05/30/adobe-finally-releases-kuler-color-picking-app-for-iphone/";
    },

那我该如何处理呢?即使它似乎不是有效的 JSON,我可以把它变成一个 NSDictionary 吗?

4

3 回答 3

2

来自Instapaper API 文档

Instapaper 字符串始终以 UTF-8 编码,并且 Instapaper 期望所有输入都使用 UTF-8。除非另有说明,否则每个方法的输出都是一个数组。默认情况下,输出数组以 JSON 形式返回。您可以指定带有回调函数名称的 jsonp 参数,例如 jsonp=myCallback,以使用 JSONP 并将输出包装在对指定函数的调用中。

所以你不可能得到无效的 JSON!

试试下面的代码:

NSData *jsonData = [[NSString stringWithContentsOfURL:[NSURL urlWithString:@"http://your-instapeper-API-link"] encoding:NSUTF8StringEncoding error:nil] dataUsingEncoding:NSUTF8StringEncoding];
NSError *error;
id serializationJSON = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:&error];

然后您可以记录错误或结果是否符合您的预期:

NSLog(@"class of JSON input: %@ \n and possible error: %@",[serializationJSON class],error);

当然,您应该期望 Array 并且没有错误。

编辑...基于评论代码:

根据文档,您应该获得 Array 或 Dictionary。请添加此核心而不是您的第 23 行(此处的编号):

if([JSON isKindOfClass:[NSDictionary class]]) {
   NSDictionary *jsonDictionary = JSON;
   NSLog(@"%@",[jsonDictionary allKeys]);
} else { 
  NSLog(@"JSON object class: %@",[JSON class]);
}

并请向我们展示输出。

还有一件事:

你从请求中得到数组。伟大的!这是一个有效的 JSON。所以你需要调试它。正如我所说,遗憾的是不是无限访问公共 API,所以我可以调查一下。但是现在你必须调试你的结果。我在您的代码中看到您正在尝试访问书签。所以我查看了文档中的书签部分,这是某种列表(NSArray)。所以如果你不知道你想要什么结果。您应该将它们打印到日志中(或设置断点)。用这个简单的日志替换我之前更新的代码:

NSDictionary *resultDictionary;
if([JSON isKindOfClass:[NSArray class]]) {
  NSArray *jsonArray = JSON;
  NSLog(@"so json is an array with %i objects",[jsonArray count]);
  for(id objectInsideArr in jsonArray) {
     NSLog(@"object in array [class]: %@ [value]: %@",[objectInsideArr class],objectInsideArr); //if here you find NSDictionary maybe is this dictionary you are looking for. I'm not sure what it is.
   if([objectInsideArr isKindOfClass:[NSDictionary class]]) {
       resultDictionary = [[NSDictionary alloc] initWithDictionary:objectInsideArr];
   }
  }
}
于 2013-06-05T10:50:14.503 回答
-1

如果是我,我会编写一个自定义格式化程序将其转换为 JSON 格式,然后在我知道它有效时使用 NSJSONSerialization。您发布的内容远非有效,它无法正常工作。我很惊讶他们以这种格式返回它,他们是否提供某种图书馆来使用他们的服务?

于 2013-06-04T14:37:17.337 回答
-1

如果您想要更简单的东西,我可以为您提供我的CGIJSONObject库,该库将使用反射处理 JSON - 您只需将 API 中的键与您的类一起镜像,就可以了。

于 2013-06-08T09:56:48.147 回答