Hi,
This parameter is not available yet.
It is planned to be implemented within Tweetinvi 0.9.3.0 which will not be available for at least 3 months.
Though Tweetinvi is very flexible and you can implement the feature yourself in 3 lines!
Done :)
Linvi
This parameter is not available yet.
It is planned to be implemented within Tweetinvi 0.9.3.0 which will not be available for at least 3 months.
Though Tweetinvi is very flexible and you can implement the feature yourself in 3 lines!
var since_id = 410493427596288001; var query = String.Format("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name={0}&since_id={1}&count=3200", "USER_SCREEN_NAME", since_id); var tweetsDTO = TwitterAccessor.ExecuteGETQuery<IEnumerable<ITweetDTO>>(query); var tweets = Tweet.GenerateTweetsFromDTO(tweetsDTO);
Linvi