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
1
vote
1 answer

Twitter search API results not reflective of advanced search function

I am interested in checking for tweets within a 300mi radius of Detroit with the query tigers. Here is the link I have been using for my python…
1
vote
0 answers

Twitter search api same Return result

Sometimes am getting SAME return values from twitter search api based on geo location even though the request parameters are different. Can any one help me to understand why this is happening...is that because of any cache issue from…
Navin Leon
  • 1,136
  • 3
  • 22
  • 44
0
votes
1 answer

Tweeter search api asynchronous fetching of searched tweets

Currently I am fetching tweets in my iphone application using tweeter search api. Now my question is that how can I know that new tweets are tweeted by other users?And how can I fetch asynchronously newly available tweets? Explanation: As example…
i-Jack
  • 1
  • 3
0
votes
2 answers

Twitter search api entities with media not working with Json.net for Windows phone Mango silverlight

Below is my returned json from twitter { "created_at": "Sat, 11 Feb 2012 06:38:28 +0000", "entities": { "hashtags": [ { "text": "Shubhdin", "indices": [ 9, 18 ] } ], "urls": [], "user_mentions": [ …
0
votes
2 answers

twitter: search hashtags in a twitter list

i'm trying to use 'Twitter Search Widget' here searching an #hashtag in a 'Twitter List', but i can't fix the exact query. Someone did it before me? Thanks in advance, sorry for my poor english. Francesco
0
votes
1 answer

why do i only see one tweet in the search from API Query?

I'm using the following query: https://twitter.com/search.json?callback=?&q=from:_adeel&count=5&include_entities=true&include_rts=true and I would like to see the last 5 tweets from this user. You can see that the user has many more than 2 tweets…
JZ.
  • 21,147
  • 32
  • 115
  • 192
0
votes
0 answers

Tweepy find users by speaker_ID

Is there any way to search for twitter spaces by speaker ID or listener ID? I've tried: spaces = client.get_spaces(user_ids="ID_NUMBER") But i can only search spaces by creator ID.
Tyes
  • 1
  • 1
0
votes
1 answer

Twitter search API: get more results and since a specified date

I’m working on a simple search machine for Twitter where I want to extract all search results of an word (or words) since the dawn of time (or anyway Twitter). Is that possible? I can only retrieve 100 results ordered by recently added tweets but I…
Emil Devantie Brockdorff
  • 4,724
  • 12
  • 59
  • 76
0
votes
0 answers

Authorization error 403 with Twitter API using python

I am using the Twitter API and I have a project that needs to collect tweets about COVID-19 on a specific date. I get this error message during collection: "error":{ "message":"Forbidden: Authentication succeeded but account is not authorized to…
rafal Az
  • 11
  • 1
0
votes
1 answer

Tweepy Status.text doesn't return full text

Okay so I would like to get the latest tweet of @MZ_GOV_PL, it's this retweet at this moment: https://twitter.com/NFZ_Centrala/status/1316416216295182337 And I would like to get the full text of it, so I've written this code: def…
Moder New
  • 457
  • 1
  • 5
  • 18
0
votes
1 answer

Why only get 1 tweet when using tweepy?

A few days ago, I applied a twitter developer account to be used with tweepy library. I tried to scrape with keyword like Google, get a lot of tweets. But after I tried to scrape data with specific keyword, I only got 1 tweet, even though tweets…
0
votes
2 answers

How to determine if a given tweet is a video?

Let’s say I have two tweets: https://twitter.com/BuzzFeed/status/917922958307295233 https://twitter.com/BuzzFeed/status/876083996026916865 I want to be able to quickly determine if the tweet contains a video. What is the best way to do that? I’ve…
byInduction
  • 405
  • 1
  • 6
  • 13
0
votes
1 answer

Twitter Search API not returning Quoted Tweets

I am calling the twitter search API https://api.twitter.com/1.1/search/tweets.json My search term is anything from a particular account (mine). It is returning tweets, and retweets, but is not returning quoted tweets. Can anyone offer any advice on…
jimplode
  • 3,474
  • 3
  • 24
  • 42
0
votes
0 answers

akka actors: No response for given command line argument with sbt

I am running an application involving akka actors with cassandra.This app takes the scan tweets on a hashatag, write them to cassandra and read them from cassandra. The three actions (1) Scanning tweets (2) Reading tweets (3) Writing tweets. are…
Mahesh
  • 178
  • 3
  • 14
0
votes
0 answers

How to fetch the tweets of a specific time span using R?

I am trying to fetch all the tweets for some terms and hashtag of a specific period of time. Let's say I would like to fetch tweets on Disaster from April 1, 2017, to April 20, 2017. I can fetch real time tweets using stream API using. Is there any…