skip to Main Content

Use proxy with Tweepy – Twitter API

I want to use proxy (with/without auth) with Twitter API via Tweepy in Python Reading the documentation I tried something (I think really wrong) like this: auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_token, access_token_secret) api = tweepy.API(auth, proxy='1.2.3.4:1234') But obviously didn't work

VIEW QUESTION
Back To Top
Search