用于 Iphone 身份验证的 MGTwitterEngine xAuth oAuth
我正在尝试将 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 方法
请帮助我
Amit Battan
All I am try to integrate twitter in Iphone application
As twiiter not allow the xAuth by default then How show I use it..
When will twitter approve xAuth for my application. As now it is in developing stage
AND one more thing
I have add the oAuthConsumer file in my application with MGTwitterEngine then how I call the oAuth.
Now I am calling like that
twitterEngine = [[MGTwitterEngine alloc] initWithDelegate:self];
[twitterEngine setUsesSecureConnection:NO];
[twitterEngine setConsumerKey:consumerKey secret:consumerSecret];
[twitterEngine setUsername:username];
[twitterEngine getXAuthAccessTokenForUsername:username password:password];
But it is xAuth method
Please help me
Amit Battan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于oAuth,我使用 https://github.com/bengotlieb/Twitter-OAuth-iPhone
对于 xAuth,我们必须向 twitter 请求。这是在苹果商店发布应用程序之后
for oAuth I have use https://github.com/bengottlieb/Twitter-OAuth-iPhone
and for xAuth we have to request twitter for it. and it is after releasing the application on Apple store