iOS 开发:我所需要做的就是发布一条推文
我一直在研究将 Twitter 集成到我的应用程序中的最新方法,看来最好的(最轻松的)方法是使用 MGTwitterEngine,而我能找到的实现此功能的最佳教程是 一个由 3 部分组成的系列。如果我需要做的只是允许用户登录他们的 Twitter 帐户并发布一条始终相同的推文,那么有没有比遵循我链接到的教程更简单的方法呢?
非常感谢您的智慧。如果替代方案不是更容易,没问题,我没有那么懒到无法遵循教程,我只是想知道是否有一种我没有看到的更快的方法。
I've been researching the latest ways to integrate Twitter into my app and it appears the best (most painless) approach is to use the MGTwitterEngine, and the best tutorial I could find to implement this is a 3-part series. If all I need to do is allow the user to login to their twitter account and post a single tweet that's always the same, is there an easier way to do that than following the tutorial I linked to?
Thanks so much for your wisdom. If the alternatives aren't much easier, no problem, I'm not so lazy that I can't follow a tutorial, I was just wondering if there's a quicker way that I didn't see.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建一个单击时打开
UIWebView
的按钮。使用此处的详细信息构建 URL:http://twitter.com/about/resources/tweetbutton。简单 - 大约 10 行代码。Create a button that opens a
UIWebView
when clicked. Build the URL using details here: http://twitter.com/about/resources/tweetbutton. Simple - about 10 lines of code.我是 st3fan (Stefan Arentz) 的忠实粉丝 https://github.com/st3fan/iphone-推特项目。它非常容易集成,包括您可以直接使用的整个视图,也可以轻松定制。
提前规划您的 Twitter 实施 - 对于 iPhone 项目,您将需要使用 xAuth 身份验证,该身份验证不需要往返网络浏览器。*您必须首先注册您的应用程序,然后请求您的应用程序使用此方法的权限。有关更多详细信息,请查看 Twitter 开发者页面。
*或不。但我讨厌离开应用程序来发布推文。
I'm a big fan of st3fan's (Stefan Arentz) https://github.com/st3fan/iphone-twitter project. It's very easy to integrate and includes whole views that you can just use, easily customizable too.
Plan your Twitter implementation ahead - with an iPhone project you will want to use xAuth authentication which does not require a round trip to the web browser.* You have to first register your app and then request permission for your application to use this method. Check the Twitter developer pages for more details.
*or not. But I hate leaving the app to post tweets.