我正在尝试将 twitter 集成到 Iphone 应用程序中,因为 twiiter 默认情况下不允许 xAuth,那么我如何使用它。.. twitter 什么时候会批准我的应用程序的 xAuth。因为现在处于发展阶段
还有一件事情
我已经使用 MGTwitterEngine 在我的应用程序中添加了 oAuthConsumer 文件,然后我如何调用 oAuth。
现在我这样打电话
twitterEngine = [[MGTwitterEngine alloc] initWithDelegate:self];
[twitterEngine setUsesSecureConnection:NO];
[twitterEngine setConsumerKey:consumerKey secret:consumerSecret];
[twitterEngine setUsername:username];
[twitterEngine getXAuthAccessTokenForUsername:username password:password];
但它是 xAuth 方法
请帮我
阿米特巴坦