在我的申请中,我需要发布推文,我该怎么做?我找到了一个jar但它的构造函数已被弃用。
答案 0 :(得分:0)
只需使用[发送意图] [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"));
答案 1 :(得分:0)
如果你只需要发帖;然后是上面显示的parag链接; twitter4j和winterwell就足够了。
否则你需要看看OAuth,这很痛苦。这是twitters(和facebook和LinkedIn等)确认用户和密码的“新”方式。
在这种情况下,http://apiwiki.twitter.com/w/page/22554657/OAuth-Examples会很有用。
祝你好运,玩得开心! :)答案 2 :(得分:0)
您可以发送ACTION_SEND
:{{1}}请求,然后根据已知应用程序包列表限制符合条件的意图。