Hello,
I am using the user/search feature which is working, but not always returning the result I am looking for and I wondered if I could ‘influence’ the search? I’ll explain…
I need to look up the official Twitter account for artists/bands and am performing a search based on the following call (which works fine), but it does not, of course, always return the correct account.
My question is, can I add any search term/filter to, for example, specify that I want results based on interests, such as ‘music’ or ‘entertainment’ to try and narrow down the search and get better results?
$url = 'https://api.twitter.com/1.1/users/search.json';
$getfield = '?q=' . $artist . '&page=1&count=1&result_type=popular';
$requestMethod = 'GET';
Thanks in advance!