Questions tagged [sttwitterapi]
60 questions
0
votes
1 answer
How can I pass query string parameters with a space char in when the callback_url is now explicit in Twitter API / Twython?
Twitter made their callback_url explicit this month. This now creates a problem since my callback url has space chars as (+) in the parameters I pass. It produces a 403 error.
qs = 'param1=value¶m2=a+b'
auth =…

user1961
- 1,270
- 2
- 17
- 27
0
votes
1 answer
Why twitter token gets expired?
I have a twitter bot that uses LinqtoTwitter it works perfectly fine but when i start it after almost 20 reply(comment) on other users tweets the token gets expired without any warning. I changed the intervals from every 5 min to every 10 minutes…

Manny Shirazy
- 128
- 1
- 7
0
votes
2 answers
Twitter API / Following someone
Is that possible that website users follows our vendors twitter account using API on our web? I want to add vendors twitter follow button on our vendor page and if users click the button on our web, users can follow their vendors twitter account.

carpediem
- 25
- 2
0
votes
1 answer
how to store a json file in terminal into csv file
I have used the Twitter standard search API to search tweets and I used:
twurl /1.1/search/tweets.json?q=I%20have%20been%20diagnosed%20with%20depression
in the terminal.
The outcome is a json file. How can I store it in CSV file?

Shideh Hm
- 69
- 1
- 5
0
votes
1 answer
how do i make sure the user tweeted or not [ i mean tweeted not clicked on a tweet button ]?
I'm gonna give a user discount when he tweeted through my website but I want to make sure that the user actually tweeted, not just clicked on a tweet button.
I have tried `
twttr.ready(function (twttr) {
twttr.events.bind('tweet', function(event)…

Soliman Mahmoud Soliman
- 302
- 3
- 10
0
votes
0 answers
twitteR package stopped returning location
I started having problems with extracting tweets with twitteR package: I don't get "location" (that's stated in user's profile) in the output anymore and I need it for my further analysis.
I am using the exact same code as before. Can anyone…
user9044173
0
votes
1 answer
get twitter favourites with registered user
I want to get user's favorites using following API favorites/list
Twitter has to types of rate limits:
- per app
- per user
My goal is to authorize user and make this request signing it with user token. to have rate limits for user, not for the…

Roma
- 1,107
- 9
- 19
0
votes
1 answer
Can the Twitter API return partial responses?
Katy Perry's latest 140 character tweet is 3822 characters if you get the full response from Twitter's API ( https://api.twitter.com/1.1/statuses/user_timeline.json).
Does the Twitter API support partial responses / field masks so that we can only…

Justin
- 3,418
- 3
- 27
- 37
0
votes
1 answer
Twitter API Rate Limit: Does it increase for my app if if 1 year ago users authorized my app?
So I'm trying to figure out if Twitter increases the rate limit for my app if I had users sign-in - and keeps the rate increase - even if users signed in 1 year ago. Meaning, does just the act of signing in increase the pool your app is allowed of…

alex
- 1
- 1
0
votes
1 answer
Twitter API : /1.1/statuses/retweet/:id returns "Could not authenticate you”,”code”:32
I am using twitter api to get the retweets , for a particular tweets
$url = "https://api.twitter.com/1.1/statuses/retweet/830785820722343937.json";
$requestMethod = 'POST';
$getfield = "";
$twitter = new TwitterAPIExchange($settings);
…

beginner
- 2,366
- 4
- 29
- 53
0
votes
0 answers
How to handle this error or exception of Max retries exceeded with url: and 'Tunnel connection failed: 407 Proxy Authentication Required'
I'm trying to fetch the Twitter followers data using python and Tweepy. But I'm facing an exception frequently and don't know why it occurs and how to handle it. Could some one help me to solve this. Also How do I stop the loop when the cursor…

KARTHICK JOTHIMANI
- 663
- 5
- 5
0
votes
1 answer
Twitter images with :large not showing up in API console
I came across a strange issue where some images won't show in the API console even though a user has posted one with a tweet.
Notice the second tweet in this timeline (right now anyway) it starts with ... World premiere of new #play 'Between a Man…

SlickRemix
- 456
- 6
- 17
0
votes
0 answers
List Index Out of Range - Tweepy/Twitter API into Geodatabase
Soooo I have been working on a script I took from ArcGIS Blueprints:
http://file.allitebooks.com/20151230/ArcGIS%20Blueprints.pdf
It should convert geolocated tweets into a geodatabase. I have the Twitter Streaming API already operational, and…

Miss_theBIG8
- 1
- 2
-1
votes
2 answers
Twitter API - Python , searching for tweet by date
# Initiate the connection to Twitter
twitter = Twitter(auth=oauth)
# Search for latest tweets about "pakistan"
results = twitter.search.tweets(q='pakistan',until=2008 - 08 - 19, )
print results
I am trying to retrieve tweets that are earlier than…

ndrwnaguib
- 5,623
- 3
- 28
- 51
-1
votes
1 answer
Twitter api search query for multiple accounts and words
How can I create a twitter search query for multiple accounts based on multiple words?
For example: Consider two accounts: @hero1 and @hero2. I want all tweets from hero1 containing words 'super' or 'action' and tweets from hero2 containing word…

Phoenix Dev
- 457
- 5
- 19