Hi Asad,
Thank you for your feedback, I greatly appreciate it :)
If your question is 'how can I get the creator of a Tweet received from search?' then use the Creator field!
If your question is 'how can I search for tweets from a specific user?' then use the following syntax : 'from:[USER_SCREEN_NAME]'
Let me know if this answer your question.
Linvi
Thank you for your feedback, I greatly appreciate it :)
If your question is 'how can I get the creator of a Tweet received from search?' then use the Creator field!
var tweets = Search.SearchTweets("galaxy s5"); foreach (var tweet in tweets) { Console.WriteLine(tweet.Creator.Name); }
var tweetsFromUser = Search.SearchTweets("from:ladygaga"); foreach (var tweet in tweetsFromUser { Console.WriteLine(tweet.Creator.Name); }
Linvi