符合http://www.theverge.com/2014/11/18/7242477/twitter-search-now-lets-you-find-any-tweet-ever-sent Twitter搜索现在可以让您找到任何发送的推文。
但是当我尝试使用tweepy从2014年到2015年获取推文时,它只是最近才发布:
query = 'Nivea'
max_tweets = 1000
searched_tweets = [json.loads(status.json) for status in tweepy.Cursor(api.search,
q=query,
count=100,
#since_id="24012619984051000",
since="2014-02-01",
until="2015-02-01",
result_type="mixed",
lang="en"
).items(max_tweets)]
我试过=“2014-02-01”,而且是_id但不管。
答案 0 :(得分:4)
很遗憾,您无法从Twitter访问过去的数据。不是你正在使用什么库的问题:Tweepy,Twitter4J,无论如何,只是Twitter不会提供任何超过2周的数据。
要获取历史数据,您需要直接通过Twitter或第三方经销商(如GNIP)访问firehose。
答案 1 :(得分:1)
我使用自己的代码,使用HttpURLConnection
和Twitter搜索网址。然后我使用正则表达式来提取最后20个匹配的推文......幸运的是,我正在删除推文,我可以简单地再次搜索,直到我找不到推文。我包含了代码,虽然它是用Java编写的,但同样适用于任何语言。首先,我使用一个类来实际搜索推文并记录他们的详细信息:
public class ReadSearch{
private String startURL = "https://twitter.com/search?f=realtime&q=from%3A";
private String middleURL = "%20%40";
private String endURL = "&src=typd";
public ArrayList<Tweet> getTweets(String user, String troll) {
ArrayList<Tweet> tweets = new ArrayList<Tweet>();
String expr = "small.class=\"time\".*?href=\"/"
+ "([^/]+)"
+ ".*?status/"
+ "([^\"]+)"
+ ".*?title=\""
+ "([^\"]+)";
Pattern patt = Pattern.compile(expr, Pattern.DOTALL | Pattern.UNIX_LINES);
try {
Matcher m = patt.matcher(getData(startURL+user+middleURL+troll+endURL));
while (m.find()) {
if(user.equals(m.group(1).trim())){
Tweet tw = new Tweet();
tw.setUser(m.group(1).trim());
tw.setTweetid(Long.parseLong(m.group(2).trim()));
tw.setDate(m.group(3).trim());
tweets.add(tw);
}
}
} catch (Exception e) {
e.printStackTrace();
System.out.println("Exception " + e);
}
return tweets;
}
private StringBuilder getData(String dataurl) throws MalformedURLException, IOException{
URL url = new URL(dataurl);
HttpURLConnection httpcon = (HttpURLConnection) url.openConnection();
httpcon.addRequestProperty("User-Agent", "Mozilla/4.76");
StringBuilder sb = new StringBuilder(16384);
BufferedReader br = new BufferedReader(new InputStreamReader(httpcon.getInputStream(), "ISO-8859-1"));
String line;
while ((line = br.readLine()) != null){
sb.append(line);
sb.append('\n');
}
httpcon.disconnect();
br.close();
return sb;
}
public static void main(String [] args){
//testing
ReadSearch rs = new ReadSearch();
ArrayList<Tweet> tweets = rs.getTweets("Tony_Kennah", "PickLuckier");
for(Tweet t : tweets){
System.out.println("TWEET: " + t.toString());
}
}
}
然后我们需要Tweet类本身,这样我们就可以将Tweets组合起来并用它们做事,它只是这样的bean:
public class Tweet{
private String user;
private long tweetid;
private String date;
public String getUser(){
return user;
}
public void setUser(String user){
this.user = user;
}
public long getTweetid(){
return tweetid;
}
public void setTweetid(long tweetid){
this.tweetid = tweetid;
}
public String getDate(){
return date;
}
public void setDate(String date){
this.date = date;
}
public String toString(){
return this.tweetid + " " + this.user + " " + this.date;
}
}
......所以这只是标准的java。要使用上面的代码,我使用Twitter4J API并执行此操作:
public class DeleteTweets
{
public static void main(String args[]) throws Exception
{
Twitter twitter = TwitterFactory.getSingleton();
ArrayList<Tweet> tweets = new ArrayList<Tweet>();
String [] people = { "PickLuckier" };
for(String s : people){
do{
ReadSearch rs = new ReadSearch();
tweets = rs.getTweets(twitter.getScreenName(), s);
for(Tweet tw : tweets){
twitter.destroyStatus(tw.getTweetid());
}
} while(tweets.size()!=0);
}
}
}
就是这样。我不使用评论,但我希望很容易看出发生了什么,这会帮助你。