我想向 twitter 用户朋友发布推文消息。我找不到教程。请帮忙。
问问题
678 次
3 回答
1
您想要 POST direct_messages/new直接消息。
于 2012-11-23T10:53:56.410 回答
0
如果您只需要发送一条推文,这可以为您提供帮助。
String tweetUrl = "https://twitter.com/intent/tweet?text=PUT TEXT HERE &url="
+ "https://www.google.com";
Uri uri = Uri.parse(tweetUrl);
startActivity(new Intent(Intent.ACTION_VIEW, uri));
其他人例如如何发送消息 suing androd API 。这里有一些链接为您提供帮助;
http://www.android10.org/index.php/articleslibraries/291-twitter-integration-in-your-android-application,
Build Android applications with Twitter
http://kenai.com/projects/twitterapime/pages/Home
于 2012-11-23T10:55:46.227 回答
0
TwitterAPIMe是一个很棒的 Android 第三方库,它为许多 Twitter 交互提供了很多功能,包括处理 OAUTH 和发送推文。
该项目定期更新,可在以下网址找到:http: //kenai.com/projects/twitterapime/pages/Home
撰写本文时的最新版本是下载页面上的twitter_api_me-1.8.3-android 。
网站上提供了教程,详细介绍了如何使用该功能以及如何将其与您的 Android 项目集成。
该库也可用于 RIM 设备和 J2ME。
我在多个项目中使用了他们的库。
于 2012-11-23T11:02:48.500 回答