我试图在这个问题上挣扎两天.我正在使用Fabric SDK和Rest工具包,试图为Twitter使用不同的Rest API Web服务.我可以使用具有authTokenSecret,authToken和其他值的会话对象的TWTRLogInButton成功登录.当我尝试获取用户时间线时,我总是得到失败的响应,作为:

{“errors”:[{“code”:215,“message”:“Bad Authentication data.”}]}

完整错误日志是:

E restkit.network:RKObjectRequestOperation.m:297 Object request Failed: Underlying HTTP request operation Failed with error: Error Domain=org.restkit.RestKit.ErrorDomain Code=-1011 "Expected status code in (200-299),got 400" UserInfo=0x1780f6f80 {NSLocalizedRecoverySuggestion={"errors":[{"code":215,"message":"Bad Authentication data."}]},NSErrorFailingURLKey=https://api.twitter.com/1.1/statuses/user_timeline.json?user_id=3116882322&count=2&screen_name=ann_10p,AFNetworkingOperationFailingURLRequestErrorKey=<NSMutableuRLRequest: 0x178202740> { URL: https://api.twitter.com/1.1/statuses/user_timeline.json?user_id=3116882322&count=2&screen_name=ann_10p },AFNetworkingOperationFailingURLResponseErrorKey=<NSHTTPURLResponse: 0x1702271e0> { URL: https://api.twitter.com/1.1/statuses/user_timeline.json?user_id=3116882322&count=2&screen_name=ann_10p } { status code: 400,headers {
    "content-encoding" = gzip;
    "Content-Length" = 87;
    "Content-Type" = "application/json;charset=utf-8";
    Date = "Wed,01 Apr 2015 09:46:42 GMT";
    Server = "tsa_a";
    "Strict-Transport-Security" = "max-age=631138519";
    "x-connection-hash" = 4c123a59a023cd86b2e9a3e9fc84cd7b;
    "x-response-time" = 4;
} },NSLocalizedDescription=Expected status code in (200-299),got 400}


2015-04-01 14:47:13.223 TwitterIntegration[1086:60b] I restkit.network:RKHTTPRequestOperation.m:154 GET 'https://api.twitter.com/1.1/statuses/user_timeline.json?user_id=3116882322&count=2&screen_name=ann_10p'
2015-04-01 14:47:13.225 TwitterIntegration[1086:60b] E restkit.network:RKHTTPRequestOperation.m:178 GET 'https://api.twitter.com/1.1/statuses/user_timeline.json?user_id=3116882322&count=2&screen_name=ann_10p' (400 Bad Request) [0.0013 s]: Error Domain=org.restkit.RestKit.ErrorDomain Code=-1011 "Expected status code in (200-299),got 400}

码:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view,typically from a nib.

    [self addLoginButton];

}

-(void) addLoginButton
{
    TWTRLogInButton *logInButton = [TWTRLogInButton buttonWithLogInCompletion:^(TWTRSession *session,NSError *error) {
        // play with Twitter session


        if(session)
        {
            NSLog(@"logged in success! with session : %@",session);
            [Global sharedInstance].session = session;
            [self requestUserTimeline];
        }
        else
        {
            NSLog(@"session is null");

        }

    }];
    logInButton.center = self.view.center;
    [self.view addSubview:logInButton];

}

-(void) requestUserTimeline
{
    RKObjectMapping *mapping = [RKObjectMapping mappingForClass:[UserTimeline class]];
    [mapping addAttributeMappingsFromDictionary:@{
                                                  @"text":   @"tweetText",@"favorited":     @"favourited",@"created_at":        @"createdAt",@"user.name":        @"name",@"id":        @"tweetID",@"user.profile_image_url":  @"profileImageURL"
                                                  }];

    NSIndexSet *statusCodes = RKStatusCodeIndexSetForClass(RKStatusCodeClassSuccessful); // Anything in 2xx
    RKResponseDescriptor *responseDescriptor = [RKResponseDescriptor responseDescriptorWithMapping:mapping pathPattern:nil keyPath:nil statusCodes:statusCodes];
    Nsstring *params = [Nsstring stringWithFormat:@"?user_id=3116882322&count=2&screen_name=ann_10p",[Global sharedInstance].session.userID,[Global sharedInstance].session.userName];
    NSMutableuRLRequest *request = [NSMutableuRLRequest requestWithURL:[NSURL URLWithString:[@"https://api.twitter.com/1.1/statuses/user_timeline.json" stringByAppendingString:params]]];
    [request setHTTPMethod:@"GET"];
    RKObjectRequestOperation *operation = [[RKObjectRequestOperation alloc] initWithRequest:request responseDescriptors:@[responseDescriptor]];
    [operation setCompletionBlockWithSuccess:^(RKObjectRequestOperation *operation,RKMappingResult *result) {
        UserTimeline *timeline = [result firstObject];
        NSLog(@"Mapped the article: %@",timeline);
    } failure:^(RKObjectRequestOperation *operation,NSError *error) {
        NSLog(@"Failed with error: %@",[error localizedDescription]);
    }];
    [operation start];
}

请帮我调试这个问题.谢谢.

解决方法

在使用Fabric SDK进行实验后,我成功地进行了集成.我得出了一些结论,并希望与你们分享.

1)当您第一次成功登录Twitter时,已为用户创建了一个TWTRSession会话.即使您关闭应用程序并重新打开它,它也会持续.

2)如果已经为您创建了会话,并且您尝试登录获取另一个会话对象而不注销,则将返回身份验证错误.

3)您可以使用以下方法检查会话是否存在:

if([[Twitter sharedInstance] session])
{
   NSLog(@"session already present!!!");
   NSLog(@"signed in as %@",[[[Twitter sharedInstance] session] userName]);
}
else
{
NSLog(@"you need to login!!");
}

4)我会建议使用登录

[[Twitter sharedInstance] logInWithCompletion:^(TWTRSession * session,NSError * error)];

代替:

[TWTRLogInButton buttonWithLogInCompletion:^(TWTRSession * session,NSError * error)];

Use Twitter’s login button only,when you are sure that no session
exists currently.

5)如果Twitter的身份验证真的取笑你,请卸载该应用程序并尝试全新安装.这是最后的解决方案!

6)要从会话注销,请使用[[Twitter sharedInstance] logout];

编码部分:

我假设您已经按照Fabric mac app执行了所有步骤.

首先登录用户,然后发出时间表请求.

-(void) loginUserToTwitter
{
    if([[Twitter sharedInstance] session])
    {
        NSLog(@"session already present!!!");
        NSLog(@"signed in as %@",[[[Twitter sharedInstance] session] userName]);
        [self getUserTimeline];
    }
    else
    {
        NSLog(@"session not found. Make new request!");

        [[Twitter sharedInstance] logInWithCompletion:^(TWTRSession *session,NSError *error) {

            if(error)
                NSLog(@"error occurred... %@",error.localizedDescription);
            else
            {
                NSLog(@"Successfully logged in with session :%@",session);
               [self getUserTimeline];
            }

        }];
    }

}

-(void) getUserTimeline
{
    NSURLRequest *request = [[[Twitter sharedInstance] apiclient] URLRequestWithMethod:@"GET" URL:@"https://api.twitter.com/1.1/statuses/user_timeline.json"
       parameters:@{@"userid": [Twitter sharedInstance].session.userID,@"count" : @"5",@"screen_name" : [Twitter sharedInstance].session.userName} error:nil];

    NSURLResponse *response;
    NSError *error;
    NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

    if(!data)
    {
        NSLog(@"error....: %@",error.localizedDescription);
    }
    else
    {
        Nsstring *string = [[Nsstring alloc] initWithData:data encoding:NSUTF8StringEncoding];
        NSLog(@"%@",string);

        [twitterResponse removeAllObjects];

        NSArray *arrayRep = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];
        twitterResponse = [NSMutableArray arrayWithArray:[TWTRTweet tweetsWithJSONArray:arrayRep]];

        [_tableView reloadData];
    }
}

我更喜欢使用Twitter SDK的方法来使用[TWTRTweet tweetsWithJSONArray:arrayRep]而不是Restkit来提取推文.这里的事情真的很容易处理.

在Twitter的标准风格中显示推文:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view,typically from a nib.

    // Setup tableview
    self.tableView.estimatedRowHeight = 150;
    self.tableView.rowHeight = UITableViewAutomaticDimension; // Explicitly set on iOS 8 if using automatic row height calculation
    self.tableView.allowsSelection = NO;
    [self.tableView registerClass:[TWTRTweetTableViewCell class] forCellReuseIdentifier:@"TweetCell"];

}

#pragma mark - Tableview Methods

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return twitterResponse.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static Nsstring *cellID = @"TweetCell";

    TWTRTweetTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID forIndexPath:indexPath];

    TWTRTweet *tweet = twitterResponse[indexPath.row];
    [cell configureWithTweet:tweet];

    return cell;
}

// Calculate the height of each row. Must to implement
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {

        TWTRTweet *tweet = twitterResponse[indexPath.row];
        return [TWTRTweetTableViewCell heightForTweet:tweet width:CGRectGetWidth(self.view.bounds)];

}

注意:

从here下载Fabric SDK.您必须输入电子邮件地址.他们会通过电子邮件向您发送一些下载链接,您必须按照一些步骤操作. Fabric Mac App将让您完全配置xcode项目.

希望能帮助到你!

参考文献:

Twitter Login

Show Tweets

Cannonball Sample Project

使用Fabric SDK iOS访问Twitter用户时间线的更多相关文章

  1. 详解Canvas实用库Fabric.js使用手册

    这篇文章主要介绍了详解Canvas实用库Fabric.js使用手册的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

  2. HTML5 Web缓存和运用程序缓存(cookie,session)

    这篇文章主要介绍了HTML5 Web缓存和运用程序缓存(cookie,session),小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

  3. iOS Swift上弃用后Twitter.sharedInstance().session()?. userName的替代方案

    解决方法如果您仍在寻找解决方案,请参阅以下内容:

  4. 使用Fabric SDK iOS访问Twitter用户时间线

    我试图在这个问题上挣扎两天.我正在使用FabricSDK和Rest工具包,试图为Twitter使用不同的RestAPIWeb服务.我可以使用具有authTokenSecret,authToken和其他值的会话对象的TWTRLogInButton成功登录.当我尝试获取用户时间线时,我总是得到失败的响应,作为:{“errors”:[{“code”:215,“message”:“BadAuthentic

  5. ios – 如何从Apple Watch调用iPhone上定义的方法

    有没有办法从Watchkit扩展中调用iPhone上的类中定义的方法?根据我的理解,目前在Watchkit和iPhone之间进行本地通信的方法之一是使用NSUserDefaults,但还有其他方法吗?

  6. ios – 通过Fabric安装的Twitter,登录工作,请求推文的持久性错误

    我没有想法.解决方法当你请求推文时,我想你的代码如下所示,对吗?原来他们的文档不完整,应该是这样的客户端对象需要您的用户信息来完成它的工作.我遇到过同样的问题.

  7. ios – Xcode 6:在Fabric Crashlytics更新后找不到’Answers.h’文件

    我在Objective-C项目的Xcode6.3.2中的故事板中工作.我尝试构建时突然间出现错误:/…来看看我的变化,它只显示我所做的更改–这与Crashlytics无关.还有其他人看到这个吗?有人建议以最有效的方式恢复并重新开始工作吗?

  8. fabric-twitter – Twitter Fabric xcode – 上传分发时出错:归档分发错误:-3

    爱德华.解决方法当我更改目标的包标识符并尝试将其作为与以前相同的应用程序分发时,我收到此错误.我通过将我的应用程序注册为Fabric中的新应用程序解决了这个问题.

  9. ios – 如何将视频从AVAssetExportSession保存到相机胶卷?

    在此先感谢您的帮助.解决方法只需使用session.outputURL=…

  10. ios – 使用AVCaptureSession sessionPreset = AVCaptureSessionPresetPhoto拉伸捕获的照片

    解决方法所以我解决了我的问题.这是我现在使用的代码,它工作正常:…重要的输出imagaView:一些额外的信息:相机图层必须是全屏,并且outputimageView也必须是.我希望这些对某些人来说也是有用的信息.

随机推荐

  1. iOS实现拖拽View跟随手指浮动效果

    这篇文章主要为大家详细介绍了iOS实现拖拽View跟随手指浮动,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

  2. iOS – genstrings:无法连接到输出目录en.lproj

    使用我桌面上的项目文件夹,我启动终端输入:cd然后将我的项目文件夹拖到终端,它给了我路径.然后我将这行代码粘贴到终端中找.-name*.m|xargsgenstrings-oen.lproj我在终端中收到此错误消息:genstrings:无法连接到输出目录en.lproj它多次打印这行,然后说我的项目是一个目录的路径?没有.strings文件.对我做错了什么的想法?

  3. iOS 7 UIButtonBarItem图像没有色调

    如何确保按钮图标采用全局色调?解决方法只是想将其转换为根注释,以便为“回答”复选标记提供更好的上下文,并提供更好的格式.我能想出这个!

  4. ios – 在自定义相机层的AVFoundation中自动对焦和自动曝光

    为AVFoundation定制图层相机创建精确的自动对焦和曝光的最佳方法是什么?

  5. ios – Xcode找不到Alamofire,错误:没有这样的模块’Alamofire’

    我正在尝试按照github(https://github.com/Alamofire/Alamofire#cocoapods)指令将Alamofire包含在我的Swift项目中.我创建了一个新项目,导航到项目目录并运行此命令sudogeminstallcocoapods.然后我面临以下错误:搜索后我设法通过运行此命令安装cocoapodssudogeminstall-n/usr/local/bin

  6. ios – 在没有iPhone6s或更新的情况下测试ARKit

    我在决定下载Xcode9之前.我想玩新的框架–ARKit.我知道要用ARKit运行app我需要一个带有A9芯片或更新版本的设备.不幸的是我有一个较旧的.我的问题是已经下载了新Xcode的人.在我的情况下有可能运行ARKit应用程序吗?那个或其他任何模拟器?任何想法或我将不得不购买新设备?解决方法任何iOS11设备都可以使用ARKit,但是具有高质量AR体验的全球跟踪功能需要使用A9或更高版本处理器的设备.使用iOS11测试版更新您的设备是必要的.

  7. 将iOS应用移植到Android

    我们制作了一个具有2000个目标c类的退出大型iOS应用程序.我想知道有一个最佳实践指南将其移植到Android?此外,由于我们的应用程序大量使用UINavigation和UIView控制器,我想知道在Android上有类似的模型和实现.谢谢到目前为止,guenter解决方法老实说,我认为你正在计划的只是制作难以维护的糟糕代码.我意识到这听起来像很多工作,但从长远来看它会更容易,我只是将应用程序的概念“移植”到android并从头开始编写.

  8. ios – 在Swift中覆盖Objective C类方法

    我是Swift的初学者,我正在尝试在Swift项目中使用JSONModel.我想从JSONModel覆盖方法keyMapper,但我没有找到如何覆盖模型类中的Objective-C类方法.该方法的签名是:我怎样才能做到这一点?解决方法您可以像覆盖实例方法一样执行此操作,但使用class关键字除外:

  9. ios – 在WKWebView中获取链接URL

    我想在WKWebView中获取tapped链接的url.链接采用自定义格式,可触发应用中的某些操作.例如HTTP://我的网站/帮助#深层链接对讲.我这样使用KVO:这在第一次点击链接时效果很好.但是,如果我连续两次点击相同的链接,它将不报告链接点击.是否有解决方法来解决这个问题,以便我可以检测每个点击并获取链接?任何关于这个的指针都会很棒!解决方法像这样更改addobserver在observeValue函数中,您可以获得两个值

  10. ios – 在Swift的UIView中找到UILabel

    我正在尝试在我的UIViewControllers的超级视图中找到我的UILabels.这是我的代码:这是在Objective-C中推荐的方式,但是在Swift中我只得到UIViews和CALayer.我肯定在提供给这个方法的视图中有UILabel.我错过了什么?我的UIViewController中的调用:解决方法使用函数式编程概念可以更轻松地实现这一目标.

返回
顶部