使用 java api 获取 Twitter 中我所有关注者的计数(推文)
我是 java 开发人员,我知道一些 twitter api 组件,如下所示
- twitter4j-2.2.2.jar
- jtwitter.jar
使用 java api 为我在 twitter 中的所有关注者获取计数(tweet)
你对此有什么想法并得到更好的方法吗执行 ?
潘卡杰
I m java developer and i know some of twitter api components as below
- twitter4j-2.2.2.jar
- jtwitter.jar
Get count(tweet) for my all follower in twitter using java api
do you have any idea about it and get it better way implementation ?
pankaj
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
twitter.getFollowersIDs(..)
)twitter.showUser(id)
然后将他们的推文计数相加 (user.getStatusesCount( )
)twitter.getFollowersIDs(..)
)twitter.showUser(id)
and then sum their tweet counts (user.getStatusesCount()
)这是可能的......您可以使用下面的 twitter api 找到任何公共 twitter 用户的推文计数...
https://api.twitter.com/1/users/show.json?screen_name=twitterapi&include_entities=true
返回一个 JSON 对象。然后,您可以使用您最喜欢的 JSON 解析器对其进行解析,并提取“statuses_count”字段...:)
It is possible.....You can find count of any public twitter user's tweet by using below twitter api...
https://api.twitter.com/1/users/show.json?screen_name=twitterapi&include_entities=true
which returns a JSON object. You then parse that with your favorite JSON parser, and extract the "statuses_count" field...:)