我試圖解析推特趨勢,但我不斷收到解析錯誤「as_of」。任何人都知道這是爲什麼發生?試圖分析推特趨勢
編輯:
下面是使用
NSMutableArray *tweets;
tweets = [[NSMutableArray alloc] init];
NSURL *url = [NSURL URLWithString:@"http://search.twitter.com/trends/current.json"];
trendsArray = [[NSMutableArray alloc] initWithArray:[CCJSONParser objectFromJSON:[NSString stringWithContentsOfURL:url encoding:4 error:nil]]];
NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
for (int i = 0; i < [trendsArray count]; i++) {
dict = [[NSMutableDictionary alloc] init];
//[post setObject: [[currentArray objectAtIndex:i] objectForKey:@"query"]];
[dict setObject:[trendsArray objectAtIndex:i] forKey:@"trends"];
//[dict setObject:[trendsArray objectAtIndex:i] forKey:@"query"];
//[post setObject:[trendsArray objectAtIndex:i] forKey:@"as_of"];
[tweets addObject:dict];
//post = nil;
}
您能發佈一些示例代碼和數據嗎? – 2009-11-29 20:05:33
你剛剛使用http://search.twitter.com/trends/current.json?你使用的是什麼JSON解析庫/框架?發佈您正在使用的代碼。 – 2009-11-29 20:11:03
我使用CCJSON解析趨勢 發表了上面的代碼 – timothy5216 2009-12-01 03:20:32