question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Using multiple filters with search parameters

See original GitHub issue

Hello,

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:closed
  • Created 5 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
sourabhsriomcommented, Feb 15, 2019

Thank you so much!

1reaction
linvicommented, Feb 14, 2019

Here you go :

Filters = TweetSearchFilters.Images | TweetSearchFilters.NativeVideo | TweetSearchFilters.Verified
Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found