如何使用 Android 应用程序发推文?
在我的应用程序中,我需要发布推文,我该怎么做?我找到了一个 jar,但它的构造函数已被弃用。
In my application, I need to post tweets, how can I do this? I have found a jar but it's constructor is deprecated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需使用 [SEND Intent][1],这样您的用户就可以决定他们想要对您的消息执行什么操作:
just use a [SEND Intent][1], that way your users can decided what they want to do with your message:
如果您只需要发帖;然后是上面显示的段落的链接; twitter4j 和 Winterwell 就足够了。
否则你需要看看 OAuth,这很痛苦。这是 Twitter(以及 Facebook 和 LinkedIn 等)确认用户和密码的“新”方式。
http://apiwiki.twitter.com/w/page/22554657/OAuth-Examples 在这种情况下会很有用。
祝你好运,玩得开心! :)
if you only need to post; then the links that parag displayed above; twitter4j and winterwell will suffice.
Otherwise you need to take a look at OAuth, which is a pain. that's twitters (and facebook and LinkedIn and so on) "new" way of confirming users and passwords.
http://apiwiki.twitter.com/w/page/22554657/OAuth-Examples would be useful in that case.
Good luck and have fun! :)
您可以发送适当的
意图
:请求ACTION_SEND
,然后根据已知应用程序包列表限制符合条件的意图。You can send the appropriate
Intent
: request forACTION_SEND
and then limit the eligible intents based on a list of known applications packages.