Iphone身份验证xAuth

Iphone身份验证xAuth

本文介绍了MGTwitterEngine for Iphone身份验证xAuth oAuth的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将Twitter集成到Iphone应用程序中由于默认情况下不允许xAuth,然后显示如何使用它.Twitter何时会批准我的应用程序的xAuth.现在正处于开发阶段

All I am try to integrate twitter in Iphone applicationAs 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

还有一件事

我已经使用MGTwitterEngine在我的应用程序中添加了oAuthConsumer文件,然后调用了oAuth.

I have add the oAuthConsumer file in my application with MGTwitterEngine then how I call the oAuth.

现在我这样打电话

twitterEngine = [[MGTwitterEngine alloc] initWithDelegate:self];
[twitterEngine setUsesSecureConnection:NO];
[twitterEngine setConsumerKey:consumerKey secret:consumerSecret];
[twitterEngine setUsername:username];
[twitterEngine getXAuthAccessTokenForUsername:username password:password];

但这是xAuth方法

请帮助我

授予Battan

推荐答案

用于oAuth我已经使用 https ://github.com/bengottlieb/Twitter-OAuth-iPhone

for oAuth I have use https://github.com/bengottlieb/Twitter-OAuth-iPhone

,对于xAuth,我们必须为其请求Twitter.并且是在Apple商店中发布了该应用程序之后

and for xAuth we have to request twitter for it. and it is after releasing the application on Apple store

这篇关于MGTwitterEngine for Iphone身份验证xAuth oAuth的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 04:08