Use paremeter tweet_mode=extended

This commit is contained in:
Jicksaw 2018-07-03 01:21:50 +03:00 committed by GitHub
parent 21199d6bda
commit 31482fa0d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,14 +126,16 @@ public class TwitterRipper extends AlbumRipper {
.append("&exclude_replies=true")
.append("&trim_user=true")
.append("&include_rts=true")
.append("&count=" + 200);
.append("&count=" + 200)
.append("&tweet_mode=extended");
break;
case SEARCH:
req.append("https://api.twitter.com/1.1/search/tweets.json")
.append("?q=" + this.searchText)
.append("&include_entities=true")
.append("&result_type=recent")
.append("&count=100");
.append("&count=100")
.append("&tweet_mode=extended");
break;
}
if (maxID > 0) {