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;
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.