Questions tagged [twitter-search]

Twitter search refers to the search form of Twitter, capable of finding various Twitter content - users, tweets, retweets, and others.

Twitter search refers to the search form of Twitter, capable of finding various Twitter content - users, tweets, retweets, and others. If the basic Twitter search is not turning up results for the desired terms, an option is to use advanced search that provides various search operators, which you can use to fine-tune your search query.

104 questions
23
votes
2 answers

Exclude account from twitter search results

I'd like to search for everything relating to these terms: sidigital OR sidgtl OR sidigital.co Example search but I don't want to see anything from the specific user @sidgtl how do I do this? I can't ignore sidigital because I still want to see…
Titan
  • 5,567
  • 9
  • 55
  • 90
12
votes
1 answer

Exclude replies from official twitter search widget

I have a twitter search-widget on my site with the following search: from:account_name. But it now shows my twitterstream with all the replies to. I want to exclude those from the list. Does anyone know how to do that? After searching there are a…
Willem de Wit
  • 8,604
  • 9
  • 57
  • 90
11
votes
1 answer

PHP std::Class check if attribute exists

I am using Twitter Search API and it returs an array of objects. I have to check for each object if it contains ['media'] array. Below is one of the objects with media attribute. object(stdClass)#56 (4) { ["hashtags"]=> array(2) { [0]=> …
intelis
  • 7,829
  • 14
  • 58
  • 102
9
votes
4 answers

Get Tweets with Pictures using twitter search api

Is it possible to get tweets which contain photos? I am currently using twitter search api and getting all the tweets having entity details by setting include_entities=true. I see picture details under media object but is there anyway to filter…
Hemant P
  • 143
  • 2
  • 2
  • 8
5
votes
1 answer

Twitter Search API: result_type details?

The Twitter Search API documentation for the attribute result_type specifies three different options: mixed, recent, popular. The documentation is vague about the differences between recent and popular. Does anyone know how the API uses these…
Michael
  • 776
  • 4
  • 19
5
votes
2 answers

Twitter Search API multiple hash tags or users

I am trying to query the Twitter Search API for either a user, several users, a hashtag, several hashtags, or any combo of them. I am struggling with the syntax. Multiple users (WORKS) ?q=from:user1 OR from:user2 OR from user3 Single hashtag…
Chris
  • 4,762
  • 3
  • 44
  • 79
4
votes
1 answer

Filter tweets using "filter_level" in Twitter streaming API

I am using statuses/filter and am trying to filter the tweets from the twitter stream based on the parameter "filter_level". query = ["Donald Trump","Cristiano Ronaldo"] numberOfTweets = 1000 dictOfTweets ={} twitter_api =…
anon
  • 367
  • 1
  • 4
  • 18
3
votes
2 answers

How to fetch all tweets with a given hashtag using the Twitter search API?

First of all let me note that this is the first time I am using the Twitter API, so I could be missing something obvious. What I want to do is get all tweets that include a given hashtag. My research lead me to use the twitter search API. I've tried…
user6475662
3
votes
1 answer

Error Code 215: twitter search api?

I am using the twitter search API 1.1 and getting this response {"errors":[{"message":"Bad Authentication data","code":215}]} The query I am constructing for search is https://api.twitter.com/1.1/search/tweets.json?q=.priyanka%20chopra Am I…
WISHY
  • 11,067
  • 25
  • 105
  • 197
3
votes
1 answer

Twython : Twitter API returned 500(Internal Server Error)

While trying to do a simple twitter search using Twython twitter = Twython('..', '..','..', '..') tweets = twitter.search(q="mangalore",count=100) I am getting this error: twython.exceptions.TwythonError: Twitter API returned a 500 (Internal Server…
Nazim Zeeshan
  • 713
  • 1
  • 12
  • 20
3
votes
1 answer

Twitter OAuth: users/search works but search/tweets does not

I want search for tweets in twitter. It is not working. $parameters = array('q' => 'oauth'); $result = $connection->get('search', $parameters); But when I do a user search it working perfectly. $parameters = array('q' => 'oauth'); $result =…
simpleuser
  • 479
  • 5
  • 16
2
votes
1 answer

Monitor Twitter for multiple words / hashtags?

I'm currently using a script on my page to retrieve each time a new item on Twitter with a certain word. The script uses the URL http://twitter.com/#!/search?q=mySearchWord. The script is inspired by elektronaut. I would like to "upgrade" my script…
Emil Devantie Brockdorff
  • 4,724
  • 12
  • 59
  • 76
2
votes
1 answer

Require your help for Twitter Search API

As there are 2 response format(Atom and Json) from Twitter search api, i am trying to fetch the twits(Json format) by using the URL:[http://search.twitter.com/search.json?q=pareshmayani], but you know it is returning only 1 page with 15 twits at a…
Paresh Mayani
  • 127,700
  • 71
  • 241
  • 295
2
votes
1 answer

Is there any way to exclude any accounts mentioning specific terms from twitter search results

I'm trying to build some advanced twitter searches to monitor certain items. At present, they get thrown off by people using one of the keywords in the username. I can't just mute / block all those users, as some of them are ones I follow. At the…
mat8iou
  • 23
  • 3
2
votes
2 answers

Geocode in Twitter API doesn't work

Can somebody tell me about Twitter Search API with geolocation filter? I'm trying to use GET…
1
2 3 4 5 6 7