使用twitter ios sdk oAuth

我尝试使用MGTwitterEngine进行twitter Iphone集成, 这是支持xAuth和oAuth的文档 首先我尝试使用xAuth,我调用的函数名为getXAuthAccessTokenForUsername 但是我的应用程序正处于开发阶段......并且Twitter没有批准它......他们将在发布后批准它... 我无法使用MGTwitterEngine使用oAuth 有谁能够帮我... 即使我无法从源代码中使用oAuth版本 http://mobile.tutsplus.com/tutorials/iphone/twitter-api-iphone/comment-page-1/ 我可以使用它成功更新我的状态......但是不能做任何其他事情 我试试
[_engine getUserInformationForEmail:@"battan20@gmail.com"];
//_engine is the twitterengine object
然后得到错误 请求9EF8DE73-6E04-46F1-9D90-484F90FCA44F失败并显示错误:错误域= HTTP代码= 404“操作无法完成。(HTTP错误404.)” 请求016DB024-1BFB-4E9B-8734-3FFCCB93D6E4失败并显示错误:错误域= HTTP代码= 403“操作无法完成。(HTTP错误403.)” 请帮我 阿米特巴图     
已邀请:
今天我打电话的时候
NSString *abc = [twitterObj getUserInformationFor:@"amit_battan"];
NSLog(@"abc...%@",abc);
然后我得到了日志
abc...F4BBA3C6-5783-46FF-A383-1B9C2319AB43
Request F4BBA3C6-5783-46FF-A383-1B9C2319AB43 succeeded
意味着它工作正常...... 但是我如何得到输出..在哪个函数/变量     
-(void)userInfoReceived:(NSArray *)userInfo forRequest:(NSString *)connectionIdentifier {
    NSMutableArray *mFollowerArray  =   nil;
    mFollowerArray  =   [userInfo retain];
    NSLog(@"count = %d",[mFollowerArray count]);
    for (int i=0; i<[mFollowerArray count]; i++) {
        NSLog(@" %@",[mFollowerArray objectAtIndex:i]);
    }
}
上面的代码可能有所帮     

要回复问题请先登录注册