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
0
votes
1 answer

Twitter searching for two lists

I'd like to embed two lists in same timeline on my website. I'm trying to search for two Twitter lists using Twitter search but i can't make it work. I'm able to do it i.e. with two accounts. from:NASA OR from:NBA But it doesn't work with lists …
Aapo
  • 1
  • 1
0
votes
1 answer

Twitter4j Getting Tweets Too Long

Hello i have tweet id's and i saved them to database before. But i saw that i could not save created time efficiently (it is saved like 00:00:00). Therefore i wished to update my tweets with tweet id by using following code. MyConnectionBuilder…
0
votes
1 answer

How can I get share count using the new Twitter Search APIs?

I wonder if it's still possible to use the Search API on client side using an AJAX call, C# would be fine too, but so far I'm finding a lot of talk about this but no code sample or any good instructions how this can be done, Some sites like these…
Yovav
  • 2,557
  • 2
  • 32
  • 53
0
votes
0 answers

TwiiterSearch displaying errors in new installation

I am new to TwitterSearch from GitHub TwitterSearch and when I'm trying some of the provided samples, I get the following errors: Traceback (most recent call last): File "test.py", line 1, in from TwitterSearch import * File…
0
votes
1 answer

Getting tweets in twitter-python using using place id

I am trying to get the tweets which contain a particular search term and have been tweeted from Mumbai . I know the place id of Mumbai is: 7929cea6bd5b32bd . I am using python-twitter in python 2.7.9 and the following code: …
0
votes
1 answer

Using Twitter's public API to find similar tweets

I am working on an application that amongst other things tries to find similar tweets based on a tweet's text as input. The similarity of the tweet would be based on the amount of matching text. I would like to use the public twitter search api to…
Hartger
  • 329
  • 1
  • 14
0
votes
1 answer

How to get the old timeline or tweet?

i'm University students of South korea I'm developing analysis application using bigdata of twitter with my advisor professor. So i'm gathering tweets contains specific keyword(relevant word of crime) at period. I use 'streaming api' and 'search…
0
votes
0 answers

Twitter search terms does not show bot-account tweets?

I want to make a specific search-term in Twitter, this search-term does include tweets from bot-account(s). However, the search function from twitter does not include tweets from bot-accounts? I already disabled the Quality filter in Settings. Any…
Slijpsel
  • 1
  • 1
0
votes
0 answers

Get tweets with html, like in Twitter widget

I am trying to get tweets from Twitter with text body, like in Twitter widget, using search API v1.1. What is the problem. This is my code: $connection = new TwitterOAuth($consumer_key, $consumer_secret, $twitter_access_token['oauth_token'],…
0
votes
1 answer

Query everything that starts with @

Hi currently I am using twitter search in Twitter4J and was wondering if there is any way I can query for getting tweets that starts with "User Mentions" or more logically @ symbol.
Harsh Patni
  • 384
  • 1
  • 12
0
votes
1 answer

Node: Twitter search api request issue

I am observing the wrong output while hitting Twitter search api and i am using this npm module. I am passing since, from, until parameters to the api, but i am not getting any tweet where as generating the cURL request from the Twitter's oauth…
Gaurav Gupta
  • 4,586
  • 4
  • 39
  • 72
0
votes
1 answer

Twitter search api with hindi characters in the query returns 403 error

I am receiving 403 error from search api when using this query: "सार्वजनिक स्वास्थ्य जॉन्स हॉपकिन्स विश्वविद्यालय" OR "एमए एन ए पौष्टिक सहायता उत्पाद निगम" OR "मेडिसिन्स सैंस फ्रंटियर्स" Error I have got from Twitter's api…
Piotr Idzikowski
  • 713
  • 5
  • 13
0
votes
1 answer

Twitter API Hashtag Search Results don't contain images

I am not seeing image entities in my twitter API search results when I search for a hashtag, but if I use the api endpoint for that specific tweet I do. Using this tweet for an example:…
goddamnyouryan
  • 6,854
  • 15
  • 56
  • 105
0
votes
1 answer

Twitter API: get newly created accounts

I'm looking for a way to fetch the usernames of the most recently created accounts on Twitter, or alternatively search for accounts, filtered by join date. There doesn't seem to be a built-in way of doing this in the Twitter API. Can anyone suggest…
0
votes
2 answers

What parameters will Twitter lib's fetchTweets() method accept

I've created a twitter bot for retweeting and liking tweets using Agarwal's tutorial which uses the Twitter lib library for searching tweets. I'm using Twitterlib version 21 in my project. It seems to work for the most part, but I have one…