Using multiple filters with search parameters
See original GitHub issueHello,
I am using search Parameters to configure how I want my data to be pulled. In my case I am looking for tweets matching the search term, which have a photo or video in them. Right now my search parameters look like this :
var searchParameter = new SearchTweetsParameters("#sgg2e")
{
Lang = LanguageFilter.English,
MaximumNumberOfResults = 100,
Filters = TweetSearchFilters.Images
};
Could you please tell me how I can add another filter for TweetSearchFilters.Video ? I did not find anything in the documentation.
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Pass multiple filters with multiple values in a query string ...
Most filter examples I have found are either using one filter or one value, but I am looking as to whether or not...
Read more >How To Apply Multiple Filters in Excel (Plus Tips)
How to apply multiple filters in Excel · 1. Create a header row · 2. Select the "Data" tab and "Filter" tool ·...
Read more >How do you add multiple filter values when using a Query ...
To apply multiple filter values to a single column, please use this syntax: ?&FilterName=Capabilities&FilterMultiValue=DDS;Equity.
Read more >How to filter by multiple parameters at the same time?
I want to give products 4 or more filters, like: country, producer, type, and make possible to select any combinations, for example, one...
Read more >JavaScript Data Grid: Multi Filter
The Multi Filter allows multiple Provided Filters or Custom Filters to be used on the same column. Download v30 of the best JavaScript...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you so much!
Here you go :