如何使用 Android 应用程序发推文?

发布于 2024-10-14 14:21:58 字数 53 浏览 3 评论 0原文

在我的应用程序中,我需要发布推文,我该怎么做?我找到了一个 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 技术交流群。

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

发布评论

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

评论(3

阳光下慵懒的猫 2024-10-21 14:21:58

只需使用 [SEND Intent][1],这样您的用户就可以决定他们想要对您的消息执行什么操作:

Intent shareIntent = new Intent(    android.content.Intent.ACTION_SEND);
 shareIntent.setType("text/plain");
 shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,”Sharing info");
 shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, ”is very easy this way”);
startActivity(Intent.createChooser(shareIntent, ”Share Track"));

just use a [SEND Intent][1], that way your users can decided what they want to do with your message:

Intent shareIntent = new Intent(    android.content.Intent.ACTION_SEND);
 shareIntent.setType("text/plain");
 shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,”Sharing info");
 shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, ”is very easy this way”);
startActivity(Intent.createChooser(shareIntent, ”Share Track"));
〆凄凉。 2024-10-21 14:21:58

如果您只需要发帖;然后是上面显示的段落的链接; 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! :)

2024-10-21 14:21:58

您可以发送适当的意图:请求ACTION_SEND,然后根据已知应用程序包列表限制符合条件的意图。

You can send the appropriate Intent: request for ACTION_SENDand then limit the eligible intents based on a list of known applications packages.

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