誓言+Twitter iPhoneSDK

发布于 2024-09-19 08:21:31 字数 260 浏览 1 评论 0原文

有谁知道利用 twitter API 和 Oauth 身份验证发送 Twits iPhone SDK 的好例子.......

我在发送 twits 时遇到了困难......我可以做一个通过 Oauth+MGTwiiterEngine 成功登录 Twitter(可以检查凭据)。

现在基于该会话,我想知道如何发送 twits..

或者如果我可以获得用户名和信息,我可以做这件事。登录时需要密码...但我该怎么做呢???

在这两种情况下帮助我..

Does anyone know of a good example utilizing the twitter API and Oauth authentication for sending Twits iPhone SDK ...........

I got stuck @ sending the twits .........I can make a successful login to twitter Via Oauth+MGTwiiterEngine (Can check the credentials).

Now based on that session I want to know how to send twits..

Or either i can do this thing if i can get username & passsword when doing login...but how can i do that????

Help me in either of case..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆梦 2024-09-26 08:21:31

使用以下内容来发布有关某些事件或按钮操作的推文

        if(![_engine isAuthorized]){  
        UIViewController *controller = [SA_OAuthTwitterController controllerToEnterCredentialsWithTwitterEngine:_engine delegate:self];  

        if (controller){  
            [self presentModalViewController: controller animated: YES];  
        } 

    } 


    if(_engine){  
        [_engine sendUpdate:tweetContent];
    }

Use the following to tweet on some event or Button Action

        if(![_engine isAuthorized]){  
        UIViewController *controller = [SA_OAuthTwitterController controllerToEnterCredentialsWithTwitterEngine:_engine delegate:self];  

        if (controller){  
            [self presentModalViewController: controller animated: YES];  
        } 

    } 


    if(_engine){  
        [_engine sendUpdate:tweetContent];
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文