Visit Tweetinvi 0.9.6.x Work Items
The goal of such a feature is to give the ability to developers to quickly add new parameters to existing Endpoints. This is required so that they do not have to wait for the next release of Tweetinvi to use such parameters.
A previous property called TweetSearchFilters has been renamed to TweetSearchType. This property allows to specify which type of Tweet we want to receive from the Search.
The Filters property just filter the content based on its type or its content.
Custom Parameters
When an action can be performed with a 'RequestParameters' class, you will now be able to specify CustomQueryParameters.The goal of such a feature is to give the ability to developers to quickly add new parameters to existing Endpoints. This is required so that they do not have to wait for the next release of Tweetinvi to use such parameters.
var searchParameters = Search.CreateTweetSearchParameter("hello"); searchParameters.AddCustomQueryParameter("include_entities", "false");
Search Filters
This new release introduces the Search Filters (Images, Videos, Hashtags, Links, News, Replies, Verified).A previous property called TweetSearchFilters has been renamed to TweetSearchType. This property allows to specify which type of Tweet we want to receive from the Search.
The Filters property just filter the content based on its type or its content.
// This code will return the tweets in relation with manga but all this tweet will contain a video.var searchParameter = Search.CreateTweetSearchParameter("manga"); // Add some filters to the query searchParameter.Filters = TweetSearchFilters.Videos; // Specify which mode of search we want to use searchParameter.SearchType = SearchResultType.Popular; // Specify which type of tweets needs to be retrieved searchParameter.TweetSearchType = TweetSearchType.OriginalTweetsOnly;
Report User For Spam
It is now possible to report a user for spam.User.ReportUserForSpam(23829382);