How to search for users using the twitter ruby โ€‹โ€‹gem

How to make a call using twitter

I tried:

client.search('sachin')

      

but returns Twitter::SearchResults

that only contains tweets.

+3


source to share


1 answer


Use Twitter :: REST :: Users # user_search



So using your example client.user_search('sachin')

.

+5


source







All Articles