使用tweepy代理

时间:2018-06-01 18:51:54

标签: python proxy tweepy

我试图使用tweepy来获取经过身份验证的用户的时间表:

import * as VueGoogleMaps from 'vue2-google-maps'
Vue.component('vue2-google-maps', VueGoogleMaps);

不幸的是,我收到了以下错误:

# get absolute path of script directory
script_dir = os.path.dirname(__file__)

rel_path = "twitter_cfg.json"

cfg_file = os.path.join(script_dir, rel_path)

with open(cfg_file) as json_data_file:
    cfg_data = json.load(json_data_file)

auth = tweepy.OAuthHandler(cfg_data["API_KEY"], cfg_data["API_SECRET"])
auth.set_access_token(cfg_data["ACCESS_TOKEN"], cfg_data["ACCESS_TOKEN_SECRET"])

api = tweepy.API(auth)

public_tweets = api.home_timeline()
for tweet in public_tweets:
    print(tweet.text)

我认为这是因为我的公司使用代理服务器。是否可以在tweepy的api中指定我的代理URL,如果可以,我该如何实现?

0 个答案:

没有答案