linvi / tweetinvi

Tweetinvi, an intuitive Twitter C# library for the REST and Stream API. It supports .NET, .NETCore, UAP (Xamarin)...
MIT License
1.01k stars 220 forks source link

How can I search tweets by a specific hashtag? #1150

Open amitimo opened 2 years ago

amitimo commented 2 years ago

Hello! I was trying for so long to find an option to search a tweet by an #. For example, when I look for all the tweets that include '#Hello'. I succeed with finding tweets that include specific words but when it comes to hashtag, the function doesn't work.

I tried this :

var searchResponse = await userClient.SearchV2.SearchTweetsAsync("#hello"); var tweets = searchResponse.Tweets;

What Am I missing? thanks a lot.