1

我目前正在一个 iOS 应用程序中解析来自 Twitter 的推文。我的应用程序目前可以使用 API 调用执行搜索search.twitter.com/search.json?...,并且我的应用程序可以解析这些推文并为每条推文选择我想要的所有数据。我现在正处于尝试获取用户时间线的阶段,但我似乎无法找到一种稳定的方法来解析从用户的时间线 API 调用返回的对象。

使用搜索功能(例如: https ://dev.twitter.com/docs/api/1/get/search底部的返回对象),我可以通过选择valueForKey:(@"results")并遍历所有这些结果来解析,如下所示:

    //jSONText is the returned result from the API in NSDictionary format
    NSArray *resultTweetsJSON = [jSONText valueForKey:(@"results")];

    for (int tweetIndex=0; tweetIndex<[resultTweetsJSON count]; tweetIndex++) {

        //Loop through and pull out raw tweet content for a specific tweet
        NSString *rawTweetContent = [resultTweetsJSON objectAtIndex:tweetIndex];

        //Build a custom tweet object using that content
        Tweet *singleTweet = [[Tweet alloc] initWithResultsContent:rawTweetContent];
    }

我希望我可以执行相同或相似的事情,但我似乎无法找到用于从时间线返回的数据的好键(示例返回的数据靠近底部:https://dev.twitter。 com/docs/api/1/get/statuses/user_timeline)。

如您所见,user_time结果集不包含results我可以从中查询的漂亮“”键。

如何轻松地从对Get/Statuses/User_TimelineTwitter API 的调用中选择和解析数据并将其转换为 NSArray 以便我可以循环并提取推文?网上的一切似乎都使用了旧技术。我找到了本教程,但它似乎将 Twitter 的响应作为 NSData 对象而不是 NSDictionary 对象,我相信 NSDictionary 是最新的方法。

这是我认为可能有用的东西:

    //No valueForKey to use, so perhaps use ""?
    NSArray *timeline = [jSONText valueForKey:(@"")];

    for (int i=0; i<[timeline count]; i++) {
     //Looping through each "object" of the timeline, grab the tweet content then fill user content

        //Grab the "user" object from the timeline object we're looking at
        NSString *rawUserContent = [[timeline objectAtIndex:i] valueForKey:(@"user")];
        //NSString *rawUserContent = [timeline valueForKey:(@"user")]; - Maybe this?

        //Do whatever else I need to do here...

    }
4

1 回答 1

1

几天后,我发现我只是把问题复杂化了。我需要做的就是转换为数组并进行相应的解析。

    //The above code was taken out for brevity.  
    //userTimeline = the returned result from the API call to Get User Timeline
    NSDictionary *userTimeline = [NSJSONSerialization JSONObjectWithData:responseData options:0 error:&jsonParsingError];

    //convert the NSDictionary to an array
    NSArray *timeline = (NSArray*)userTimeline;

    //loop through the timeline array object
    for (int i=0; i<[timeline count]; i++) {
        //Looping through each "object" of the timeline, grab the tweet content then fill user content

        //Grab the "User" section of the tweet we're looking at
        NSString *rawUserContent = [[timeline objectAtIndex:i] valueForKey:(@"user")];

        //Fill singleTweet with user content
        //initWithUserContent is a custom method I wrote to parse apart the User data
        //Tweet is a custom class I wrote to hold data about a particular tweet
        Tweet *singleTweet = [[Tweet alloc] initWithUserContent:rawUserContent];

        //At this point singleTweet will be filled with user content, so now fill with tweet content (text and created_at for now)
        singleTweet.text = [[timeline objectAtIndex:i] valueForKey:(@"text")];
        singleTweet.created_at = [[timeline objectAtIndex:i] valueForKey:(@"created_at")];

然后,我将所有上述代码包装在一个 if 语句中。如果用户正在执行搜索(使用 Twitter 的搜索 API),我将执行上述问题中的所有代码,如果用户正在从用户的时间线中执行选择,我将执行此答案中的所有代码。

像魅力一样工作,我现在可以正确解析两个 JSON 返回的结果,我需要做的就是将字典转换为数组。

于 2012-10-29T19:00:55.497 回答