0

我正在开发一个在 ios 5.1 中运行的 ipad 应用程序,其中已经完成了 twitter 集成。现在我可以使用 twitter.framework 使用我的应用程序发推文了。但我想了解我们制作的推文的详细信息。我在框架中使用 TWRequest 将查询发布为

-(IBAction)queryButtonTapped:(id)sender{
    TWRequest *request = [[TWRequest alloc] initWithURL:[NSURL URLWithString:@"http://search.twitter.com/search.json?q=indians&rpp=5&with_twitter_user_id=true&result_type=recent"] parameters:nil requestMethod:TWRequestMethodGET];

    [request performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
        if([urlResponse statusCode] >= 200){
            NSError *error;
            NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:responseData options:0 error:&error];
            UIAlertView *alertView1 = [[UIAlertView alloc] initWithTitle:@"Twitter response"
                                                                 message:[NSString stringWithFormat:@"response: %@",dict]
                                                                delegate:self
                                                       cancelButtonTitle:@"OK"
                                                       otherButtonTitles:nil];
            [alertView1 show];
        }
        else{
            UIAlertView *alertView2 = [[UIAlertView alloc] initWithTitle:@"oops"
                                                                 message:[NSString stringWithFormat:@"response: %i, and error is %@",[urlResponse statusCode],error]
                                                                delegate:self
                                                       cancelButtonTitle:@"OK"
                                                       otherButtonTitles:nil];
            [alertView2 show];
        }
    }];
}

在这里,我正在搜索我制作的印度推文。

我收到一条消息,提示“Twitter REST API v1 不再处于活动状态。请迁移到 API v1.1。” 现在我想知道那个 1.1 版本是什么。它是否与 Twitter.framework 或我应该获得新的 twitter.framwork 有关。否则我需要以不同的方式查询。

4

1 回答 1

0

一个月以来我一直有同样的问题,看看是否有帮助。twitter 框架使用 api 版本 1.0,现已下架。

于 2013-07-31T06:19:06.977 回答