According to the things I've found twitter4J seems to be the most prominent tool when it comes to Java and Twitter. I went through the code examples and javadoc but I couldn't find a way to do this.
根据我发现的东西,twitter4J似乎是Java和Twitter上最突出的工具。我浏览了代码示例和javadoc,但我找不到这样做的方法。
What I want to do is, extract the tweet (content of the tweet) using the URL of it. I tried using JSOUP and the CSS selector but when its a conversation it pulls all the tweets of it. How can I do it using Twitter4J?
我想要做的是,使用它的URL提取推文(推文的内容)。我尝试使用JSOUP和CSS选择器,但是当它进行对话时,它会提取它的所有推文。我怎么能用Twitter4J做到这一点?
Input tweet URL -> Output the content of the tweet
输入推文URL - >输出推文的内容
1 个解决方案
#1
1
Using jsoup is easier, u can do this:
使用jsoup更容易,你可以这样做:
Document doc = Jsoup.connect("the tweet url here").timeout(10*1000).get();
Element tweet = doc.select(".js-tweet-text-container").first();
now u can use the tweet object to parse the information.
现在你可以使用tweet对象来解析信息。
#1
1
Using jsoup is easier, u can do this:
使用jsoup更容易,你可以这样做:
Document doc = Jsoup.connect("the tweet url here").timeout(10*1000).get();
Element tweet = doc.select(".js-tweet-text-container").first();
now u can use the tweet object to parse the information.
现在你可以使用tweet对象来解析信息。