Questions tagged [sttwitterapi]
60 questions
0
votes
1 answer
Twitter quick reply type other than options?
I am implementing the quick reply feature in a chatbot using Twitter. The chat displays some quick answers to some questions the bot is asking. Now, in the API reference shows that the quick option buttons need an attribute called type which is then…

Peter Poliwoda
- 563
- 2
- 7
- 19
0
votes
1 answer
tweeting using "@" and "#" through tweeter api
I am new to tweeter api(beginner level experience), have been exploring tweeter rest api. so far I managed to read user timeline, followers count and also able to tweet.
However in a tweet, I wish to mention users by using "@" symbol.
example…

Ashish Parab
- 174
- 2
- 19
0
votes
1 answer
How to run example from developer.twitter.com
I've just seen snippet of code on developer.twitter.com
'curl --request POST \
--url https://api.twitter.com/1.1/tweets/search/30day/.json \
--header 'authorization: Bearer ' \
--header 'content-type: application/json' \
…
0
votes
1 answer
How to have my twitter timeline in my website
I've been searching through the twitter API but can't find the right docs. What I need is not a simple timeline to embed on the website. I need to be able to allow visitors to the site to reply to tweets and also enable a follow button on the…
0
votes
1 answer
How to categorize tweets using Twitter API
I'm planning to create a news website using twitter API to fetch tweets of specific news resource accounts. Is there anyway to categorize them into sports, break news, culture ... etc?
Here's the example of sample timeline…

PHP User
- 2,350
- 6
- 46
- 87
0
votes
0 answers
Tweepy taking forever to write Json Data
I ran this code last week with Jupyter Notebook and it worked rather quickly. However, this week I've run into issues with it taking forever (more than an hour)to write JSON data to a file. The code works, but I was curious if maybe the way I've…

user9762321
- 83
- 1
- 2
- 9
0
votes
1 answer
Can a group of 3 researchers share/pool Twitter API tokens to accelerate/improve data collection on a sentiment analysis project?
Our group is working on a sentiment analysis research project. We are trying to use the Twitter API to collect tweets. Out aimed dataset involves a lot of query terms and filters. However, since each of us has a developer account, we were wondering…

JL Yaye
- 1
0
votes
1 answer
Case sensitivity of search terms in TweetR package
I want to know if the search terms in tweetR package to collect tweets through API are case sensitive?
For example search term "Grand Old Party" and "grand old party" would yield entirely similar results, entirely different results ( means case…
0
votes
0 answers
Social Media Sharing Application
I am new in using social media api's. This question is not about the code, if there is a code it will be great otherwise I just need an idea or a way if it's even possible.
I am trying to work on a web-application using asp.net core and razor pages…

Farrukh Ahmed Khan
- 301
- 1
- 3
- 19
0
votes
0 answers
Attempting to determine if large Twitter API query using 'rtweet' is still actually downloading
I am attempting to download every instance of a hashtag (#Venture) using the R package rtweet` and am seeing a messaging indicating that the data is downloading but stopping at 16% with the progress bar unfinished. I understand the API limits a…

ThomasPepperz
- 176
- 11
0
votes
1 answer
Encoding works for 1 and not for other list in Twitter using python
I am trying to start cheating data from twitter using twitter module and python. Here's is my code
import twitter
import win_unicode_console
win_unicode_console.enable()
CONSUMER_KEY = 'xxxxxxxxxxxxxxxxxx'
CONSUMER_SECRET =…

rahul agarwal
- 65
- 5
0
votes
1 answer
Twitter search API response?
I am unable to understand, why "retweeted": false, even though "retweet_count": 2? Or does the retweeted point to something else?
Example API response:
"retweet_count": 2,
"retweeted": false,
"retweeted_status": {
"contributors": null,
…

Shashank Yadav
- 174
- 1
- 11
0
votes
1 answer
Twitter GET Users/Search with multiple parameters
Can I make an API call with two or more of these parameters? Such as full name AND location.
The Twitter Get Users/Search API:
https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-users-search
"Provides…

ben_lize
- 107
- 9
0
votes
0 answers
Twitter API: GET followers/ids method always returns "rate limit reached'
I'm using Tweepy (latest version, python 3.6) to get a twitter account's followers' ids:
myids = tweepy.Cursor(api.followers_ids, screen_name=account_screen_name).items()
This always returns a "rate limit reached" error. I then check my remaining…

Lo Bellin
- 485
- 4
- 20
0
votes
1 answer
Package for Twitter sentiment analysis
I'm trying to do Twitter sentiment analysis on Chinese, French, Norwegian, Russian, Persian, Hebrew, German, Hindi, Indonesian, Japanese, Korean, Portuguese, Turkish and Arabic. Just wanna ask if there are any packages for these languages and in…

Ham Huang
- 1
- 1