本文介绍了转推使用Twitter4j的Android的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图做简单的应用程序Twitter和我使用twitter4j图书馆,我得到了很好的教程如何登录和二手该库。我的应用程序显示的时间线,并有转推按钮,我的问题是如何使用twitter4j库转推?
i'm trying make simple app twitter and i use twitter4j library and i got good tutorial how to login and post twitter used that library. my app display timeline and had retweet button, my question how to retweet using twitter4j library?
推荐答案
您可以拨打<$c$c>Status#retweet()$c$c>或<$c$c>TwitterStream#retweet()$c$c>与原来的鸣叫ID。
You can call Status#retweet()
or TwitterStream#retweet()
with the original tweet id.
您也可以使用微博#retweetStatus()
,例如:
Twitter twitter = new TwitterFactory().getInstance();
twitter.retweetStatus(idOfStatusToRetweet);
这篇关于转推使用Twitter4j的Android的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!