I want to decide media type = photo/video and get them url to open it but only entities are show and inside that “type” parameter only show “photo” value either twit is belongs to picture or video that’s why i need “extended_entities” parameter to clearly differentiates which type… can anybody helping me…??
code here,
Twitter.getApiClient().getStatusesService().userTimeline(null, "nytvideo", 10, null, null, null, true, null, false, new Callback<List<Tweet>>() {
@Override
public void success(Result<List<Tweet>> result) {
final List<Tweet> tweets = result.data;
}
@Override
public void failure(TwitterException e) {
}
});